:root {
  --bg: #020714;
  --bg2: #06111f;
  --panel: rgba(7, 18, 34, .78);
  --panel2: rgba(10, 28, 48, .86);
  --line: rgba(129, 230, 255, .16);
  --line2: rgba(129, 230, 255, .34);
  --cyan: #22d3ee;
  --cyan2: #67e8f9;
  --blue: #2563eb;
  --text: #f5f8ff;
  --muted: #9aa9bc;
  --muted2: #c7d2e2;
  --green: #38d996;
  --radius: 24px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(34,211,238,.22), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(37,99,235,.20), transparent 30%),
    radial-gradient(circle at 50% 86%, rgba(14,165,233,.10), transparent 34%),
    linear-gradient(180deg, #020611 0%, #06111f 48%, #020714 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(100,180,255,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,180,255,.075) 1px, transparent 1px),
    linear-gradient(135deg, rgba(34,211,238,.035) 1px, transparent 1px);
  background-size: 72px 72px, 72px 72px, 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.88), rgba(0,0,0,.16));
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2,7,20,.94), rgba(3,12,25,.48), rgba(2,7,20,.94)),
    radial-gradient(circle at 50% 4%, rgba(93,224,255,.09), transparent 28%);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; position: relative; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(24px) saturate(145%);
  background:
    linear-gradient(90deg, rgba(3,9,20,.95), rgba(5,18,32,.91)),
    linear-gradient(180deg, rgba(255,255,255,.045), transparent);
  border-bottom: 1px solid rgba(148,163,184,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.logo img { width: 108px; display: block; filter: drop-shadow(0 0 18px rgba(34,211,238,.16)); }
.logo span {
  display: inline-flex;
  border: 1px solid rgba(226,232,240,.25);
  color: #e9f7ff;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
  background: rgba(15,23,42,.56);
  white-space: nowrap;
}
.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(148,163,184,.22);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease, filter .22s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  border-color: rgba(34,211,238,.48);
  background: linear-gradient(135deg, #22d3ee 0%, #2563eb 100%);
  color: #03101b;
  box-shadow: 0 18px 48px rgba(34,211,238,.24);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 24px 62px rgba(34,211,238,.30); }
.btn-secondary {
  color: #e8f4ff;
  background: rgba(15,23,42,.72);
}
.btn-secondary:hover { transform: translateY(-2px); border-color: rgba(34,211,238,.35); background: rgba(30,41,59,.92); }
.btn-link {
  color: #9fb0c5;
  font-weight: 850;
  font-size: 14px;
  transition: .2s ease;
}
.btn-link:hover { color: #67e8f9; }

.hero {
  min-height: auto;
  padding: 56px 0 44px;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .92fr);
  gap: clamp(34px, 4.8vw, 62px);
  align-items: center;
}
.hero-copy { min-width: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(34,211,238,.32);
  border-radius: 999px;
  color: #69e8ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(34,211,238,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 10px 28px rgba(34,211,238,.06);
}
h1, h2, h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  margin: 0;
  letter-spacing: -.044em;
}
h1 {
  margin-top: 18px;
  font-size: clamp(35px, 4.45vw, 62px);
  line-height: 1.06;
  max-width: 780px;
  text-wrap: balance;
}
h2 {
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.12;
  max-width: 780px;
  text-wrap: balance;
}
h3 {
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.22;
  letter-spacing: -.028em;
}
.lead {
  color: #c4d2e5;
  font-size: clamp(15px, 1.25vw, 17.5px);
  line-height: 1.6;
  max-width: 660px;
  margin: 16px 0 0;
}
.text-gradient {
  background: linear-gradient(90deg, #dff8ff 0%, #5de0ff 55%, #2f7cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.center-actions { justify-content: center; }
.hero-note {
  margin-top: 14px;
  color: #8798af;
  font-size: 13px;
  line-height: 1.55;
  max-width: 650px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}
.chip {
  border: 1px solid rgba(148,163,184,.18);
  background: rgba(15,23,42,.68);
  color: #d8e7fa;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(129,230,255,.22);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(34,211,238,.16), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(37,99,235,.18), transparent 40%),
    linear-gradient(160deg, rgba(10,25,42,.94), rgba(4,12,24,.92));
  box-shadow:
    0 28px 90px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.04),
    inset 0 1px 0 rgba(255,255,255,.05);
}
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125,211,252,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,211,252,.05) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.5));
  pointer-events: none;
}
.panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  right: -90px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(34,211,238,.10), transparent 68%);
  filter: blur(8px);
  z-index: 0;
}
.panel-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.status, .panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(129,230,255,.20);
  background: rgba(15,23,42,.58);
  color: #dbeafe;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(56,217,150,.10), 0 0 18px rgba(56,217,150,.45);
}
.panel-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 26px;
  border: 1px solid rgba(148,163,184,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), transparent),
    rgba(3,11,22,.56);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 40px rgba(34,211,238,.03);
}
.system-card-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.system-card {
  position: relative;
  overflow: hidden;
  min-height: 96px;
  padding: 15px;
  border-radius: 20px;
  border: 1px solid rgba(129,230,255,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), transparent 42%),
    rgba(5,16,30,.82);
  box-shadow: 0 18px 40px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.035);
}
.system-card::after {
  content: "";
  position: absolute;
  inset: auto -14% -44% 35%;
  height: 110px;
  background: radial-gradient(circle, rgba(34,211,238,.10), transparent 72%);
  pointer-events: none;
}
.system-card-full { min-height: 104px; }
.system-card-highlight {
  border-color: rgba(34,211,238,.28);
  background:
    linear-gradient(180deg, rgba(34,211,238,.09), transparent 42%),
    rgba(6,18,34,.88);
}
.system-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.system-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.18);
  background: rgba(15,23,42,.66);
  color: #67e8f9;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}
.system-card strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 15.5px;
  line-height: 1.1;
  color: #f7fbff;
}
.system-card p {
  margin: 0;
  color: #9fb0c5;
  font-size: 12.4px;
  line-height: 1.5;
}

.section {
  position: relative;
  padding: 52px 0;
}
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(760px, 72vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.20), transparent);
}
.section-tight { padding-top: 44px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 26px;
}
.section-head-stack {
  display: grid;
  align-items: start;
  gap: 16px;
  margin-bottom: 0;
}
.section-head p {
  margin: 0;
  color: #a9b7ca;
  line-height: 1.55;
  max-width: 500px;
}
.two-col {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .78fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}
.diagnostic-box {
  border: 1px solid rgba(129,230,255,.18);
  background:
    radial-gradient(circle at 10% 0%, rgba(34,211,238,.12), transparent 36%),
    linear-gradient(160deg, rgba(12,25,41,.88), rgba(5,14,28,.80));
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 20px 64px rgba(0,0,0,.26);
}
.diagnostic-box p {
  color: #c0cde0;
  line-height: 1.62;
  margin: 0;
}
.diagnostic-box p + p { margin-top: 12px; }
.mini-cta-row { margin-top: 18px; }

.grid {
  display: grid;
  gap: 16px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
.grid-6 { grid-template-columns: repeat(6, minmax(0,1fr)); }
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 22px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), transparent 46%),
    radial-gradient(circle at 12% 0%, rgba(34,211,238,.075), transparent 36%),
    linear-gradient(160deg, rgba(16,30,49,.82), rgba(7,16,30,.78));
  box-shadow: 0 18px 54px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.035);
  transition: .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,211,238,.34);
  box-shadow: 0 28px 76px rgba(0,0,0,.28), 0 0 42px rgba(34,211,238,.06);
}
.card::after {
  content: "";
  position: absolute;
  inset: auto -30% -45% 25%;
  height: 150px;
  background: radial-gradient(circle, rgba(34,211,238,.12), transparent 70%);
  pointer-events: none;
}
.card small {
  color: #67e8f9;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card p {
  color: #aebdd0;
  line-height: 1.55;
  font-size: 14px;
  margin: 10px 0 0;
}
.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #67e8f9;
  background: rgba(34,211,238,.10);
  border: 1px solid rgba(34,211,238,.24);
}
.featured-card {
  border-color: rgba(34,211,238,.30);
  background:
    radial-gradient(circle at 12% 0%, rgba(34,211,238,.14), transparent 38%),
    linear-gradient(160deg, rgba(16,34,56,.90), rgba(7,16,30,.80));
}

.pain-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.pain-item {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  gap: 7px 12px;
  align-items: start;
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 20px;
  padding: 18px;
  background: rgba(9,22,38,.62);
}
.pain-item span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #03101b;
  background: linear-gradient(135deg, #22d3ee, #2563eb);
  font-size: 11px;
  font-weight: 950;
}
.pain-item strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 18px;
  letter-spacing: -.03em;
}
.pain-item p {
  margin: 0;
  color: #aebdd0;
  font-size: 13.5px;
  line-height: 1.5;
}

.flow-box {
  border: 1px solid rgba(129,230,255,.16);
  background:
    radial-gradient(circle at 12% 0%, rgba(34,211,238,.12), transparent 34%),
    linear-gradient(160deg, rgba(12,25,41,.84), rgba(5,14,28,.78));
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}
.flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 10px;
}
.flow-step {
  min-height: 76px;
  border: 1px solid rgba(34,211,238,.22);
  background: rgba(6,18,32,.78);
  border-radius: 18px;
  padding: 14px 10px;
  text-align: center;
  font-weight: 900;
  font-size: 13px;
  display: grid;
  place-items: center;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -11px;
  color: var(--cyan);
  z-index: 2;
}
.flow-text {
  margin: 18px 0 0;
  color: #aebdd0;
  line-height: 1.55;
  font-size: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.step-card {
  position: relative;
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 22px;
  padding: 20px;
  background: rgba(15,23,42,.62);
  overflow: hidden;
}
.step-card span {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 950;
  color: #03101b;
  background: linear-gradient(135deg, #22d3ee, #2563eb);
}
.step-card p {
  color: #aebdd0;
  line-height: 1.55;
  font-size: 13.5px;
  margin: 10px 0 0;
}

.cta-box {
  text-align: center;
  border: 1px solid rgba(34,211,238,.25);
  border-radius: 30px;
  padding: 44px 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(34,211,238,.18), transparent 42%),
    radial-gradient(circle at 90% 90%, rgba(37,99,235,.15), transparent 40%),
    linear-gradient(160deg, rgba(13,30,50,.82), rgba(5,12,24,.92));
  box-shadow: 0 28px 90px rgba(0,0,0,.38);
}
.cta-box h2 { margin: 16px auto 0; }
.cta-box p {
  color: #c4d2e5;
  line-height: 1.58;
  max-width: 650px;
  margin: 16px auto 0;
}
.cta-box-final { margin-bottom: 4px; }

.faq {
  display: grid;
  gap: 10px;
}
.faq-item {
  border: 1px solid rgba(148,163,184,.14);
  background: rgba(15,23,42,.62);
  border-radius: 18px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  color: #f5f8ff;
  cursor: pointer;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  text-align: left;
  gap: 12px;
  font-weight: 900;
}
.faq-a {
  display: none;
  padding: 0 18px 18px;
  color: #aebdd0;
  line-height: 1.55;
  font-size: 14px;
}
.faq-item.open .faq-a { display: block; }

.footer {
  padding: 30px 0;
  border-top: 1px solid rgba(148,163,184,.12);
  color: #8190a5;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-links a { color: #9fb0c5; }
.footer-links a:hover { color: #67e8f9; }

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-width: 190px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(34,211,238,.42);
  border-radius: 999px;
  padding: 0 18px 0 14px;
  background: linear-gradient(135deg, #22d3ee, #2563eb);
  color: #03101b;
  font-weight: 950;
  box-shadow: 0 18px 48px rgba(34,211,238,.30), 0 0 0 6px rgba(34,211,238,.08);
  transition: transform .22s ease, filter .22s ease;
}
.floating-wa:hover { transform: translateY(-2px); filter: brightness(1.08); }
.floating-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(3,16,27,.12);
}
.floating-text { font-size: 13.5px; letter-spacing: -.01em; }



/* ===== VEXA landing refinements | 2026-05-20 ===== */
.nav-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(129,230,255,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01)), rgba(8,20,36,.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 12px 28px rgba(0,0,0,.16);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.social-link svg {
  width: 18px;
  height: 18px;
  fill: #dff7ff;
  transition: fill .22s ease, transform .22s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(34,211,238,.42);
  box-shadow: 0 18px 34px rgba(0,0,0,.24), 0 0 22px rgba(34,211,238,.08);
  background: linear-gradient(180deg, rgba(34,211,238,.10), rgba(255,255,255,.01)), rgba(8,20,36,.92);
}
.social-link:hover svg { fill: var(--cyan2); transform: scale(1.04); }

.panel-radar {
  position: absolute;
  top: 76px;
  right: 26px;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  pointer-events: none;
  opacity: .85;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(34,211,238,.16) 0 12%, transparent 12% 33%, rgba(103,232,249,.08) 33% 34%, transparent 34% 58%, rgba(103,232,249,.08) 58% 59%, transparent 59% 83%, rgba(103,232,249,.08) 83% 84%, transparent 84%),
    radial-gradient(circle at center, rgba(37,99,235,.10), transparent 68%);
  border: 1px solid rgba(129,230,255,.16);
  box-shadow: inset 0 0 32px rgba(34,211,238,.06), 0 0 48px rgba(34,211,238,.05);
}
.panel-radar span,
.panel-radar i {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.panel-radar span:nth-child(1) { width: 32px; height: 32px; border: 1px solid rgba(103,232,249,.22); }
.panel-radar span:nth-child(2) { width: 82px; height: 82px; border: 1px solid rgba(103,232,249,.18); }
.panel-radar span:nth-child(3) { width: 122px; height: 122px; border: 1px solid rgba(103,232,249,.14); }
.panel-radar i {
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, rgba(34,211,238,0) 0deg, rgba(34,211,238,.24) 36deg, rgba(34,211,238,0) 72deg);
  animation: radarSweep 5.6s linear infinite;
  filter: blur(.2px);
}

.panel-grid,
.system-card,
.card,
.pain-item,
.flow-step,
.step-card {
  position: relative;
}
.panel-grid {
  overflow: hidden;
}
.panel-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(34,211,238,.06) 22%, transparent 45%);
  transform: translateX(-120%);
  animation: gridSweep 11s ease-in-out infinite;
  pointer-events: none;
}
.system-card,
.card,
.pain-item,
.flow-step,
.step-card {
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.system-card {
  animation: cardFloat 7.2s ease-in-out infinite;
}
.system-card:nth-child(2),
.system-card:nth-child(4),
.system-card:nth-child(6) {
  animation-delay: -1.2s;
}
.system-card:nth-child(3),
.system-card:nth-child(5) {
  animation-delay: -2.4s;
}
.system-card::before,
.card::before,
.pain-item::before,
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(34,211,238,.10) 18%, transparent 40%);
  transform: translateX(-135%);
  animation: sheenMove 8.5s ease-in-out infinite;
  pointer-events: none;
}
.card:nth-child(2n)::before,
.pain-item:nth-child(2n)::before,
.step-card:nth-child(2n)::before { animation-delay: -2.2s; }
.card:nth-child(3n)::before,
.pain-item:nth-child(3n)::before { animation-delay: -4.1s; }
.system-card:hover,
.card:hover,
.pain-item:hover,
.flow-step:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,211,238,.34);
  box-shadow: 0 28px 76px rgba(0,0,0,.28), 0 0 42px rgba(34,211,238,.06);
}
.flow-step {
  overflow: hidden;
}
.flow-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(34,211,238,.08), transparent 72%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.flow-step:hover::before { opacity: 1; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}
@keyframes radarSweep {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes sheenMove {
  0%, 68%, 100% { transform: translateX(-135%); opacity: 0; }
  12%, 44% { opacity: 1; }
  52% { transform: translateX(135%); opacity: 0; }
}
@keyframes gridSweep {
  0%, 74%, 100% { transform: translateX(-120%); opacity: 0; }
  14%, 52% { opacity: 1; }
  60% { transform: translateX(120%); opacity: 0; }
}



/* ===== VEXA landing premium refinement round 2 ===== */
body.motion-enabled .reveal-item {
  opacity: 0;
  transform: translateY(20px) scale(.985);
  filter: blur(6px);
  transition:
    opacity .7s cubic-bezier(.22,.61,.36,1),
    transform .7s cubic-bezier(.22,.61,.36,1),
    filter .7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform, filter;
}
body.motion-enabled .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.hero-copy > * {
  position: relative;
}
.trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.trust-inline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(129,230,255,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01)), rgba(8,20,36,.58);
  color: #d8e7fa;
  font-size: 12px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 10px 28px rgba(0,0,0,.12);
}
.trust-inline i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(34,211,238,.08), 0 0 18px rgba(34,211,238,.24);
  flex: 0 0 auto;
}

.section-head h2,
.section-head-stack h2,
.cta-box h2 {
  text-shadow: 0 0 32px rgba(103,232,249,.04);
}
.section-head .eyebrow,
.section-head-stack .eyebrow {
  position: relative;
}
.section-head .eyebrow::after,
.section-head-stack .eyebrow::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.4), transparent);
}

.panel.panel-interactive {
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease;
}
.panel.panel-interactive:hover {
  box-shadow:
    0 34px 110px rgba(0,0,0,.46),
    0 0 0 1px rgba(255,255,255,.05),
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 60px rgba(34,211,238,.08);
}
.panel.panel-interactive::before {
  opacity: .85;
}
.panel.panel-interactive::after {
  filter: blur(2px);
}
.panel-glow,
.diagnostic-box::before,
.flow-box::before,
.cta-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(103,232,249,.36), rgba(37,99,235,.10), rgba(103,232,249,.18));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .5;
}
.diagnostic-box,
.flow-box,
.cta-box {
  position: relative;
  overflow: hidden;
}
.diagnostic-box::after,
.flow-box::after,
.cta-box::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -110px;
  top: -80px;
  background: radial-gradient(circle, rgba(34,211,238,.12), transparent 70%);
  pointer-events: none;
}

.card,
.pain-item,
.step-card,
.flow-step,
.faq-item,
.diagnostic-box {
  backdrop-filter: blur(14px);
}
.card:hover,
.pain-item:hover,
.step-card:hover,
.flow-step:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), transparent 46%),
    radial-gradient(circle at 12% 0%, rgba(34,211,238,.10), transparent 36%),
    linear-gradient(160deg, rgba(16,30,49,.9), rgba(7,16,30,.86));
}
.system-card:hover {
  background:
    linear-gradient(180deg, rgba(34,211,238,.08), transparent 42%),
    rgba(5,16,30,.90);
}
.pain-item:hover span,
.card:hover small,
.system-card:hover .system-step {
  box-shadow: 0 0 0 6px rgba(34,211,238,.06), 0 0 22px rgba(34,211,238,.12);
}

.footer {
  background: linear-gradient(180deg, rgba(2,7,20,0), rgba(2,7,20,.4));
}

@media (prefers-reduced-motion: reduce) {
  body.motion-enabled .reveal-item,
  .system-card,
  .panel-radar i,
  .panel-grid::before,
  .system-card::before,
  .card::before,
  .pain-item::before,
  .step-card::before {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}



/* ===== VEXA landing final polish + performance ===== */
.section {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}
.hero,
.header,
.footer {
  content-visibility: visible;
}
.two-col,
.analysis-grid,
.pain-list,
.steps,
.flow-box,
.diagnostic-box,
.cta-box,
.panel-grid {
  contain: layout paint;
}

body.motion-enabled .reveal-item {
  opacity: 0;
  transform: translateY(18px) scale(.992);
  filter: none;
  transition:
    opacity .56s cubic-bezier(.22,.61,.36,1),
    transform .56s cubic-bezier(.22,.61,.36,1);
}
body.motion-enabled .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
}

/* Reduce expensive perpetual animations to the hero / key UI only */
.card::before,
.pain-item::before,
.step-card::before,
.faq-item::before {
  content: none;
  animation: none;
}
.system-card::before {
  animation-duration: 10.5s;
}
.system-card {
  animation-duration: 9.5s;
}
.panel-grid::before {
  animation-duration: 14s;
}
.panel-radar i {
  animation-duration: 7.8s;
}

.card,
.pain-item,
.step-card,
.flow-step,
.faq-item {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.diagnostic-box,
.flow-box,
.cta-box,
.panel,
.social-link,
.nav,
.floating-wa {
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}

.card,
.pain-item,
.step-card,
.flow-step,
.faq-item,
.system-card,
.social-link,
.btn,
.panel {
  transform: translateZ(0);
}

/* smoother but lighter hover */
.system-card:hover,
.card:hover,
.pain-item:hover,
.flow-step:hover,
.step-card:hover {
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 22px 52px rgba(0,0,0,.22), 0 0 28px rgba(34,211,238,.05);
}
.panel.panel-interactive:hover {
  box-shadow:
    0 28px 90px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.05),
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 40px rgba(34,211,238,.07);
}

/* Mobile + touch performance tuning */
@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .panel.panel-interactive,
  .panel.panel-interactive:hover,
  .system-card,
  .card,
  .pain-item,
  .step-card,
  .flow-step,
  .social-link {
    transform: none !important;
  }

  .system-card,
  .panel-radar i,
  .panel-grid::before,
  .system-card::before {
    animation-duration: 18s;
  }

  .panel-grid::before,
  .system-card::before,
  .flow-step::before,
  .diagnostic-box::after,
  .flow-box::after,
  .cta-box::after {
    opacity: .45;
  }

  .diagnostic-box,
  .flow-box,
  .cta-box,
  .panel,
  .social-link,
  .nav,
  .floating-wa {
    backdrop-filter: blur(7px) saturate(115%);
    -webkit-backdrop-filter: blur(7px) saturate(115%);
  }

  .card,
  .pain-item,
  .step-card,
  .flow-step,
  .faq-item {
    box-shadow: 0 10px 30px rgba(0,0,0,.14);
  }
}

@media (max-width: 720px) {
  .section {
    contain-intrinsic-size: 620px;
  }
  .panel-radar {
    opacity: .58;
  }
}



/* ===== VEXA header symmetry + eyebrow spacing refinement ===== */
.section-head > div,
.section-head-stack > div {
  display: grid;
  align-content: start;
  gap: 12px;
}
.section-head .eyebrow,
.section-head-stack .eyebrow {
  margin-bottom: 0;
}
.section-head h2,
.section-head-stack h2 {
  margin-top: 0;
}
.section-head p,
.section-head-stack p {
  margin-top: 2px;
}

@media (max-width: 720px) {
  .header {
    border-bottom-color: rgba(129,230,255,.18);
    box-shadow: 0 14px 34px rgba(0,0,0,.18);
  }
  .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo socials"
      "cta cta";
    align-items: center;
    row-gap: 12px;
    column-gap: 12px;
    padding: 12px 0;
    min-height: auto;
  }
  .logo {
    grid-area: logo;
    min-height: 40px;
  }
  .logo img {
    width: 92px;
  }
  .nav-actions {
    display: contents;
  }
  .nav-socials {
    grid-area: socials;
    justify-self: end;
    display: inline-flex;
    gap: 8px;
    padding: 4px;
    border: 1px solid rgba(129,230,255,.14);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)), rgba(5,16,30,.42);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  }
  .social-link {
    width: 32px;
    height: 32px;
  }
  .btn-nav {
    grid-area: cta;
    width: 100%;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    justify-self: stretch;
  }

  .section-head,
  .section-head-stack {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
  }
  .section-head > div,
  .section-head-stack > div {
    gap: 10px;
  }
  .section-head .eyebrow,
  .section-head-stack .eyebrow {
    justify-self: start;
  }
  .section-head h2,
  .section-head-stack h2 {
    line-height: 1.16;
  }
  .section-head p,
  .section-head-stack p {
    margin-top: 0;
    font-size: 13px;
    line-height: 1.52;
  }
}

@media (max-width: 1040px) {

  .nav-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-grid,
  .two-col { grid-template-columns: 1fr; }
  .panel { width: min(100%, 720px); margin-inline: auto; }
  .grid-5, .grid-6 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .flow { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .flow-step:nth-child(3)::after { display: none; }
  .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pain-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 720px) {

  .trust-inline {
    gap: 8px;
    margin-top: 14px;
  }
  .trust-inline span {
    font-size: 11px;
    padding: 7px 10px;
  }


  .nav-socials { gap: 6px; }
  .social-link {
    width: 34px;
    height: 34px;
  }
  .social-link svg {
    width: 15px;
    height: 15px;
  }
  .panel-radar {
    width: 110px;
    height: 110px;
    top: 72px;
    right: 18px;
    opacity: .72;
  }

  body {
    background:
      radial-gradient(circle at 50% -5%, rgba(34,211,238,.20), transparent 30%),
      radial-gradient(circle at 90% 12%, rgba(37,99,235,.16), transparent 32%),
      linear-gradient(180deg, #020611 0%, #06111f 46%, #020714 100%);
  }
  .container { width: min(100% - 28px, var(--max)); }
  .header { border-bottom-color: rgba(129,230,255,.16); }
  .nav { min-height: 62px; gap: 10px; }
  .logo img { width: 86px; }
  .logo span,
  .nav-actions .btn-link { display: none; }
  .nav-actions { gap: 8px; }
  .btn-nav {
    width: auto;
    min-height: 38px;
    padding: 9px 11px;
    font-size: 12.2px;
    box-shadow: 0 12px 34px rgba(34,211,238,.18);
  }
  .hero { padding: 26px 0 28px; }
  .hero-grid { gap: 18px; }
  .eyebrow {
    font-size: 9.2px;
    padding: 6px 9px;
    letter-spacing: .10em;
  }
  h1 {
    font-size: clamp(27px, 7.2vw, 35px);
    line-height: 1.09;
    letter-spacing: -0.038em;
    margin-top: 14px;
  }
  h2 { font-size: clamp(22px, 5.7vw, 29px); line-height: 1.15; }
  h3 { font-size: clamp(16.5px, 4.4vw, 19px); }
  .lead {
    font-size: 14px;
    line-height: 1.54;
    margin-top: 12px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
  }
  .btn {
    width: 100%;
    min-height: 42px;
    padding: 10px 13px;
    font-size: 13.2px;
    border-radius: 16px;
    white-space: normal;
    text-align: center;
  }
  .hero-note {
    font-size: 11.8px;
    color: #8fa1b8;
    margin-top: 11px;
  }
  .chips {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    margin: 14px -14px 0;
    padding: 0 14px 5px;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 28px), transparent 100%);
  }
  .chips::-webkit-scrollbar { display: none; }
  .chip {
    flex: 0 0 auto;
    font-size: 10.5px;
    padding: 7px 9px;
  }
  .panel {
    padding: 13px;
    border-radius: 24px;
    box-shadow: 0 18px 54px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.04);
  }
  .panel-topline { margin-bottom: 10px; }
  .status, .panel-tag {
    font-size: 8.4px;
    padding: 5px 7px;
    gap: 5px;
  }
  .dot { width: 6px; height: 6px; box-shadow: 0 0 0 4px rgba(56,217,150,.10); }
  .panel-grid {
    padding: 12px;
    gap: 10px;
    border-radius: 20px;
  }
  .system-card-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .system-card,
  .system-card-full {
    min-height: auto;
    padding: 12px 11px;
    border-radius: 16px;
  }
  .system-card-head {
    margin-bottom: 7px;
    gap: 7px;
    flex-wrap: wrap;
  }
  .system-card strong { font-size: 12.5px; }
  .system-card p {
    font-size: 10.6px;
    line-height: 1.42;
  }
  .system-step {
    min-width: 28px;
    height: 24px;
    padding: 0 7px;
    font-size: 8.8px;
  }
  .section { padding: 34px 0; }
  .section-tight { padding-top: 28px; }
  .section-head {
    display: block;
    margin-bottom: 15px;
  }
  .section-head-stack { display: grid; gap: 14px; }
  .section-head p {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.48;
  }
  .diagnostic-box {
    padding: 16px;
    border-radius: 20px;
  }
  .diagnostic-box p {
    font-size: 13px;
    line-height: 1.52;
  }
  .grid-3, .grid-5, .grid-6 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin-inline: -14px;
    padding: 2px 14px 10px;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 38px), transparent 100%);
  }
  .grid-3::-webkit-scrollbar,
  .grid-5::-webkit-scrollbar,
  .grid-6::-webkit-scrollbar { display: none; }
  .grid-3 > *, .grid-5 > *, .grid-6 > * {
    flex: 0 0 min(80vw, 312px);
    scroll-snap-align: center;
  }
  .card {
    border-radius: 18px;
    padding: 15px;
  }
  .card p {
    font-size: 12.8px;
    line-height: 1.46;
  }
  .card small { font-size: 9.5px; }
  .icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    margin-bottom: 10px;
  }
  .pain-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin-inline: -14px;
    padding: 2px 14px 10px;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 38px), transparent 100%);
  }
  .pain-list::-webkit-scrollbar { display: none; }
  .pain-item {
    flex: 0 0 min(82vw, 326px);
    scroll-snap-align: center;
    padding: 15px;
    border-radius: 18px;
  }
  .pain-item strong { font-size: 16.5px; }
  .pain-item p { font-size: 12.8px; }
  .flow-box {
    border-radius: 22px;
    padding: 15px;
  }
  .flow {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 10px;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 38px), transparent 100%);
  }
  .flow::-webkit-scrollbar { display: none; }
  .flow-step {
    flex: 0 0 136px;
    min-height: 58px;
    font-size: 11.5px;
    border-radius: 14px;
    scroll-snap-align: center;
  }
  .flow-step::after { display: none !important; }
  .flow-text {
    font-size: 12.8px;
    margin-top: 12px;
  }
  .steps {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin-inline: -14px;
    padding: 2px 14px 10px;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 38px), transparent 100%);
  }
  .steps::-webkit-scrollbar { display: none; }
  .step-card {
    flex: 0 0 min(82vw, 326px);
    scroll-snap-align: center;
    padding: 16px;
    border-radius: 18px;
  }
  .step-card p { font-size: 12.8px; line-height: 1.46; }
  .cta-box {
    border-radius: 22px;
    padding: 26px 14px;
  }
  .cta-box h2 { margin-top: 14px; }
  .cta-box p {
    font-size: 13px;
    line-height: 1.48;
  }
  .faq { gap: 8px; }
  .faq-item { border-radius: 15px; }
  .faq-q {
    padding: 13px 14px;
    font-size: 13.2px;
  }
  .faq-a {
    padding: 0 14px 14px;
    font-size: 12.8px;
  }
  .footer {
    padding-bottom: 86px;
  }
  .footer-row {
    display: grid;
    gap: 14px;
  }
  .footer-links {
    gap: 10px;
    font-size: 12px;
  }
  .floating-wa {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    right: 14px;
    bottom: 14px;
    padding: 0;
  }
  .floating-icon {
    width: auto;
    height: auto;
    background: transparent;
    font-size: 19px;
  }
  .floating-text { display: none; }

  /* Compacta o painel visual no mobile para reduzir a primeira dobra. */
  .panel-grid {
    grid-template-columns: 1fr;
  }
  .system-card-row {
    grid-template-columns: 1fr 1fr;
  }
  .system-card p {
    display: none;
  }
  .system-card,
  .system-card-full {
    padding: 11px 10px;
  }
  .system-card-head {
    margin-bottom: 0;
  }
 }

@media (max-width: 380px) {
  h1 { font-size: 26px; }
  .btn-nav {
    padding: 8px 9px;
    font-size: 11.5px;
  }
  .system-card p { font-size: 10.1px; }
}


/* Ajustes finais de conversão, mobile e CTAs contextuais */
.hero-clarity {
  color: #b7c6d9;
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 620px;
  margin: 10px 0 0;
}

.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.solution-card-cta {
  margin-top: auto !important;
  padding-top: 12px;
  position: relative;
  z-index: 2;
}

.btn-card {
  width: 100%;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 16px;
  font-size: 12.5px;
  white-space: normal;
  text-align: center;
}

.solution-grid { align-items: stretch; }

@media (min-width: 1041px) {
  .flow { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .flow-step:nth-child(6)::after,
  .flow-step:nth-child(3)::after { display: block; }
}

/* ==================================================
   VEXA LANDING VISUAL HOTFIX — topo compacto + WhatsApp premium
   Objetivo: corrigir a faixa superior grande, primeira dobra mobile e botão flutuante sem redesenhar a landing.
   ================================================== */
html { overflow-x: hidden; }
body {
  background-color: #020713;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.header {
  min-height: 0;
}

.nav {
  min-height: 76px;
  padding-block: 8px;
}

.logo img {
  width: 104px;
  height: auto;
  aspect-ratio: 1254 / 421;
  object-fit: contain;
}

.logo span {
  padding: 6px 10px;
}

.hero {
  min-height: auto;
  padding: 42px 0 42px;
  align-items: center;
}

.hero,
.hero-copy,
.hero .panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.hero h1 {
  color: #f8fbff;
  text-shadow: 0 18px 62px rgba(34,211,238,.10);
}

.hero .lead {
  color: #d5e1f1;
}

.hero-clarity,
.hero-note,
.section-head p,
.card p,
.diagnostic-box p,
.system-card p,
.pain-item p,
.step-card p,
.flow-text,
.faq-a {
  color: #c4d1e2;
}

.card,
.system-card,
.diagnostic-box,
.pain-item,
.step-card,
.flow-box,
.cta-box,
.solution-card {
  box-shadow: 0 18px 54px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.035);
}

.card:hover,
.solution-card:hover,
.pain-item:hover,
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 74px rgba(0,0,0,.28), 0 0 34px rgba(34,211,238,.045);
}

.section {
  padding-block: clamp(46px, 5.4vw, 58px);
}

/* Botão flutuante: dimensões explícitas, sem assimetria e com SVG centralizado. */
.floating-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  height: 56px;
  min-height: 56px;
  min-width: 194px;
  max-width: calc(100vw - 48px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(129,230,255,.48);
  background: linear-gradient(135deg, #22d3ee 0%, #2563eb 100%);
  color: #03101b;
  font-weight: 950;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(34,211,238,.26), 0 0 0 5px rgba(34,211,238,.065);
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
}

.floating-wa:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 22px 56px rgba(34,211,238,.30), 0 0 0 5px rgba(34,211,238,.075);
}

.floating-wa::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.18), transparent 54%);
  pointer-events: none;
}

.floating-icon {
  position: relative;
  z-index: 1;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(3,16,27,.10);
  color: #03101b;
}

.floating-wa-svg {
  width: 22px;
  height: 22px;
  display: block;
}

.floating-text {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 13.4px;
  line-height: 1;
  letter-spacing: -.01em;
  color: #03101b;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--max)); }

  .nav {
    min-height: 66px;
    padding-block: 6px;
  }

  .logo img { width: 84px; }
  .logo span,
  .nav-actions .btn-link { display: none; }

  .btn-nav {
    min-height: 38px;
    padding: 9px 11px;
    font-size: 12px;
    border-radius: 999px;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 30px;
  }

  .hero-grid { gap: 16px; }

  .eyebrow {
    font-size: 9.2px;
    padding: 6px 9px;
    letter-spacing: .10em;
  }

  h1 {
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 1.05;
    margin-top: 12px;
  }

  .lead {
    font-size: 14.5px;
    line-height: 1.5;
    margin-top: 11px;
  }

  .hero-clarity {
    font-size: 12.6px;
    line-height: 1.46;
    margin-top: 8px;
  }

  .hero-actions {
    margin-top: 15px;
    gap: 8px;
  }

  .hero .btn {
    min-height: 42px;
    padding: 10px 13px;
    font-size: 13.1px;
  }

  .hero-note {
    font-size: 11.6px;
    line-height: 1.45;
    margin-top: 10px;
  }

  .hero .chips {
    margin: 11px -14px 0;
    padding: 0 14px 4px;
    max-height: 31px;
    overflow: hidden;
  }

  .hero .chips .chip:nth-child(n+5) { display: none; }

  .chip {
    font-size: 10.2px;
    padding: 6px 8px;
  }

  .panel {
    margin-top: 0;
    padding: 12px;
    border-radius: 22px;
  }

  .panel-grid {
    padding: 10px;
    gap: 9px;
    border-radius: 18px;
  }

  .system-card,
  .system-card-full {
    padding: 10px;
  }

  .system-card p { display: none; }

  .section {
    padding-block: 36px;
  }

  .section-tight { padding-top: 28px; }

  .card,
  .diagnostic-box,
  .pain-item,
  .step-card,
  .flow-box {
    padding: 15px;
  }

  .footer { padding-bottom: 92px; }

  .floating-wa {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    width: 58px;
    min-width: 58px;
    max-width: 58px;
    height: 58px;
    min-height: 58px;
    max-height: 58px;
    padding: 0;
    border-radius: 50%;
    gap: 0;
  }

  .floating-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    background: transparent;
  }

  .floating-wa-svg {
    width: 28px;
    height: 28px;
  }

  .floating-text { display: none; }
}

@media (max-width: 380px) {
  h1 { font-size: 28px; }
  .lead { font-size: 13.8px; }
  .hero-clarity { font-size: 12.2px; }
  .btn-nav {
    padding: 8px 9px;
    font-size: 11.5px;
  }
  .floating-wa {
    width: 56px;
    min-width: 56px;
    max-width: 56px;
    height: 56px;
    min-height: 56px;
    max-height: 56px;
  }
  .floating-icon {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }
}

/* Hotfix final: ícone branco real do WhatsApp no botão flutuante.
   Usa asset SVG sem fundo para evitar distorção, desalinhamento ou herança de cor do SVG antigo. */
.floating-wa {
  color: #ffffff;
}

.floating-wa .floating-icon {
  position: relative;
  z-index: 1;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(2, 6, 17, .22);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}

.floating-wa-icon {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.22));
}

@media (max-width: 720px) {
  .floating-wa .floating-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    background: transparent;
    box-shadow: none;
  }

  .floating-wa-icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 380px) {
  .floating-wa .floating-icon {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }

  .floating-wa-icon {
    width: 29px;
    height: 29px;
  }
}


/* =========================================================
   WHATSAPP FLOAT — AJUSTE FINAL COM ÍCONE LIMPO
   Mesmo padrão aprovado no site principal, sem alterar outras áreas
   20260518LPWA
   ========================================================= */
.floating-wa {
  position: fixed !important;
  right: max(24px, env(safe-area-inset-right)) !important;
  bottom: max(24px, env(safe-area-inset-bottom)) !important;
  z-index: 90 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  height: 56px !important;
  min-height: 56px !important;
  width: auto !important;
  min-width: 186px !important;
  max-width: none !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(34,211,238,.22) !important;
  background: linear-gradient(135deg, rgba(11,23,40,.96), rgba(8,18,34,.98)) !important;
  box-shadow: 0 18px 54px rgba(0,0,0,.32), 0 0 0 1px rgba(34,211,238,.08), inset 0 1px 0 rgba(255,255,255,.05) !important;
  color: #f8fbff !important;
  text-decoration: none !important;
  overflow: hidden !important;
  filter: none !important;
  animation: none !important;
  transform: none !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.floating-wa::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  background: radial-gradient(circle at 20% 0%, rgba(34,211,238,.16), transparent 42%) !important;
  pointer-events: none !important;
}

.floating-wa:hover {
  transform: translateY(-2px) !important;
  filter: none !important;
  border-color: rgba(34,211,238,.34) !important;
  box-shadow: 0 24px 68px rgba(0,0,0,.36), 0 0 0 1px rgba(34,211,238,.12), 0 0 26px rgba(34,211,238,.08) !important;
}

.floating-wa .floating-icon {
  position: relative !important;
  z-index: 1 !important;
  flex: 0 0 22px !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  display: block !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.floating-wa-icon {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  filter: none !important;
}

.floating-text {
  position: relative !important;
  z-index: 1 !important;
  display: inline-block !important;
  color: #f8fbff !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: -.01em !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

@media (max-width: 720px) {
  .floating-wa {
    right: max(16px, env(safe-area-inset-right)) !important;
    bottom: max(18px, env(safe-area-inset-bottom)) !important;
    width: 58px !important;
    min-width: 58px !important;
    max-width: 58px !important;
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    padding: 0 !important;
    gap: 0 !important;
    border-radius: 999px !important;
  }

  .floating-wa .floating-icon {
    flex: 0 0 24px !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
  }

  .floating-wa-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
  }

  .floating-text {
    display: none !important;
  }
}
