
:root {
  --bg: #030914;
  --bg-2: #071321;
  --panel: rgba(15, 26, 42, 0.74);
  --panel-2: rgba(10, 35, 50, 0.72);
  --line: rgba(93, 224, 255, 0.16);
  --line-strong: rgba(93, 224, 255, 0.35);
  --cyan: #22d3ee;
  --cyan-soft: #67e8f9;
  --cyan-2: #0ea5e9;
  --blue: #2563eb;
  --text: #f5f8ff;
  --muted: #9aa9bc;
  --muted-2: #c7d2e2;
  --warning: #fbbf24;
  --green: #38d996;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 2%, rgba(34, 211, 238, 0.18), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.18), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(14, 165, 233, 0.10), transparent 36%),
    linear-gradient(180deg, #020712 0%, #06111e 48%, #030914 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image:
    linear-gradient(rgba(100, 180, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 180, 255, 0.08) 1px, transparent 1px);
  background-size: 78px 78px;
  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(3,9,20,0.94), rgba(3,9,20,0.48), rgba(3,9,20,0.94)),
    radial-gradient(circle at 50% 8%, rgba(93,224,255,.07), transparent 30%);
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(148, 163, 184, .12);
  backdrop-filter: blur(24px) saturate(145%);
  background: linear-gradient(90deg, rgba(3, 9, 20, .94), rgba(5, 18, 32, .86));
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 112px; height: auto; display: block; filter: drop-shadow(0 0 18px rgba(34,211,238,.16)); }
.brand-badge {
  border: 1px solid rgba(226, 232, 240, 0.25);
  color: #e9f7ff;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  background: rgba(15, 23, 42, .56);
}
.nav-links { display: flex; align-items: center; gap: 3px; }
.nav-links a {
  color: #b8c5d8;
  font-weight: 750;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 999px;
  transition: .22s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(148, 163, 184, .10); }
.nav-links a.active { border: 1px solid rgba(34,211,238,.22); box-shadow: inset 0 0 20px rgba(34,211,238,.05), 0 0 20px rgba(34,211,238,.06); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 14px;
  background: rgba(15, 23, 42, .72);
  color: var(--text);
  cursor: pointer;
}
.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, filter .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
  cursor: pointer; white-space: nowrap;
}
.btn-primary {
  border-color: rgba(34, 211, 238, .45);
  background: linear-gradient(135deg, #22d3ee 0%, #2563eb 100%);
  color: #03101b;
  box-shadow: 0 16px 42px rgba(34, 211, 238, .18);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 22px 60px rgba(34, 211, 238, .24); }
.btn-secondary { background: rgba(15, 23, 42, .70); color: #e8f4ff; }
.btn-secondary:hover { background: rgba(30, 41, 59, .92); border-color: rgba(34, 211, 238, .35); transform: translateY(-2px); }

.section { padding: 94px 0; position: relative; }
.section::before {
  content: ""; position: absolute; inset: 20px auto auto 50%;
  width: min(760px, 70vw); height: 1px; transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.20), transparent);
  pointer-events: none;
}
.section-tight { padding: 70px 0; position: relative; }
.page-hero { padding: 92px 0 62px; position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; right: -120px; top: 24px; width: 470px; height: 470px;
  background: radial-gradient(circle, rgba(34,211,238,.13), transparent 66%); pointer-events: none;
}
.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: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(34, 211, 238, .08);
}
h1, h2, h3 { font-family: "Space Grotesk", Inter, sans-serif; margin: 0; line-height: .98; letter-spacing: -0.045em; }
h1 { font-size: clamp(46px, 6.4vw, 88px); max-width: 980px; }
h2 { font-size: clamp(32px, 4.4vw, 62px); max-width: 940px; }
h3 { font-size: clamp(21px, 2.1vw, 29px); letter-spacing: -0.035em; line-height: 1.08; }
.lead { color: #c4d2e5; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.55; max-width: 800px; margin: 22px 0 0; }
.muted { color: var(--muted); }
.text-gradient { background: linear-gradient(90deg, #dff8ff 0%, #5de0ff 55%, #2f7cff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

.hero { padding: 86px 0 72px; min-height: calc(100vh - 76px); display: flex; align-items: center; }
.hero-grid, .page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr); gap: 48px; align-items: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 0; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chip { border: 1px solid rgba(148, 163, 184, .18); background: rgba(15, 23, 42, .68); color: #d8e7fa; padding: 10px 13px; border-radius: 999px; font-size: 13px; font-weight: 800; }

.visual-card {
  position: relative; min-height: 540px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 211, 238, .22), transparent 40%),
    radial-gradient(circle at 92% 10%, rgba(37, 99, 235, .18), transparent 36%),
    linear-gradient(160deg, rgba(12, 25, 41, .88), rgba(5, 14, 28, .68));
  box-shadow: var(--shadow); overflow: hidden;
}
.visual-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(125, 211, 252, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(125, 211, 252, .08) 1px, transparent 1px);
  background-size: 52px 52px; opacity: .9;
}
.visual-card::after {
  content: ""; position: absolute; width: 380px; height: 380px; border: 1px solid rgba(34,211,238,.12); border-radius: 999px; right: -120px; bottom: -140px;
  background: radial-gradient(circle, rgba(34,211,238,.16), transparent 64%);
}
.system-panel { position: absolute; inset: 34px; border: 1px solid rgba(148,163,184,.14); background: rgba(3,11,22,.42); border-radius: 26px; backdrop-filter: blur(8px); }
.module {
  position: absolute; border: 1px solid rgba(34, 211, 238, .24); background: rgba(2, 12, 24, .72); border-radius: 20px;
  padding: 16px; backdrop-filter: blur(14px); box-shadow: 0 20px 50px rgba(0,0,0,.25); z-index: 2;
}
.module strong { display: block; font-family: "Space Grotesk"; font-size: 18px; margin-bottom: 5px; }
.module span { color: #9fb0c5; font-size: 13px; line-height: 1.35; }
.module-1 { top: 48px; left: 42px; right: 42px; }
.module-2 { top: 176px; left: 42px; width: 45%; }
.module-3 { top: 176px; right: 42px; width: 40%; }
.module-4 { top: 318px; left: 42px; right: 42px; }
.module-5 { bottom: 38px; left: 42px; right: 42px; }
.connector { position: absolute; height: 2px; background: linear-gradient(90deg, rgba(34,211,238,.12), rgba(34,211,238,.72), rgba(37,99,235,.16)); left: 78px; right: 78px; z-index: 1; }
.connector.c1 { top: 150px; } .connector.c2 { top: 292px; } .connector.c3 { bottom: 124px; }
.status-pill { display:inline-flex; align-items:center; gap:8px; padding:8px 10px; border-radius:999px; background:rgba(34,211,238,.10); color:#aaf3ff; font-size:12px; font-weight:850; border:1px solid rgba(34,211,238,.20); }
.pulse-dot { width:8px;height:8px;border-radius:999px;background:var(--green); box-shadow:0 0 0 5px rgba(56,217,150,.12); }

.visual-context { min-height: 420px; padding: 28px; display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.visual-context .visual-title { font-family:"Space Grotesk"; font-weight:900; font-size: 24px; letter-spacing:-.04em; margin-bottom: 4px; position:relative; z-index:2; }
.visual-grid { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; position:relative; z-index:2; }
.visual-mini {
  min-height: 86px; border:1px solid rgba(148,163,184,.16); background:rgba(3,12,24,.62); border-radius:18px; padding:14px; position:relative; overflow:hidden;
}
.visual-mini strong { display:block; font-family:"Space Grotesk"; font-size:18px; margin-bottom:5px; }
.visual-mini span { color:#9fb0c5; font-size:12px; line-height:1.35; }
.visual-mini.accent { border-color: rgba(34,211,238,.38); background: rgba(4, 35, 50, .62); box-shadow: 0 0 34px rgba(34,211,238,.08); }
.visual-stack { display:grid; gap:10px; position:relative; z-index:2; }
.visual-row { display:flex; align-items:center; justify-content:space-between; gap:12px; border:1px solid rgba(148,163,184,.14); background:rgba(3,12,24,.62); border-radius:16px; padding:13px 14px; }
.visual-row strong { font-family:"Space Grotesk"; }
.visual-row .number { color:#67e8f9; font-weight:900; }
.visual-line { position:absolute; left:50%; top:24%; bottom:22%; width:1px; background:linear-gradient(transparent, rgba(34,211,238,.52), transparent); z-index:1; }
.visual-steps { display:grid; gap:9px; position:relative; z-index:2; }
.visual-step { display:flex; gap:10px; align-items:center; border:1px solid rgba(148,163,184,.14); background:rgba(3,12,24,.62); border-radius:16px; padding:12px; }
.visual-step .dot { width:30px; height:30px; border-radius:12px; display:grid; place-items:center; background:rgba(34,211,238,.10); border:1px solid rgba(34,211,238,.22); color:#67e8f9; font-weight:900; flex:0 0 auto; }
.visual-step strong { font-family:"Space Grotesk"; display:block; }
.visual-step span { color:#9fb0c5; font-size:12px; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 38px; }
.section-head p { margin: 0; color: #a9b7ca; line-height: 1.55; max-width: 540px; }
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card {
  position: relative; border: 1px solid rgba(148, 163, 184, .16);
  background: linear-gradient(160deg, rgba(20, 32, 49, .78), rgba(7, 16, 30, .76));
  border-radius: var(--radius); padding: 26px; overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(34,211,238,.33); box-shadow: 0 24px 70px rgba(0,0,0,.24), 0 0 0 1px rgba(34,211,238,.04); }
.card::after { content: ""; position: absolute; inset: auto -30% -45% 25%; height: 170px; background: radial-gradient(circle, rgba(34,211,238,.13), transparent 70%); pointer-events: none; }
.card-accent { background: radial-gradient(circle at 10% 0%, rgba(34,211,238,.16), transparent 44%), linear-gradient(160deg, rgba(13, 40, 57, .82), rgba(7,16,30,.78)); }
.card-premium { border-color: rgba(251,191,36,.28); background: radial-gradient(circle at 18% 0%, rgba(251,191,36,.14), transparent 38%), linear-gradient(160deg, rgba(25, 26, 31, .82), rgba(7,16,30,.78)); }
.card-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: rgba(34, 211, 238, .10); border: 1px solid rgba(34, 211, 238, .24); color: #5de0ff; margin-bottom: 18px; }
.card p, .card li { color: #aebdd0; line-height: 1.6; font-size: 15px; }
.card p { margin: 12px 0 0; }
.card ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.card li { display: flex; gap: 10px; }
.card li::before { content: "✓"; color: var(--cyan); font-weight: 900; flex: 0 0 auto; }
.problem-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.mini-card { border: 1px solid rgba(148, 163, 184, .14); background: rgba(15, 23, 42, .62); border-radius: 18px; padding: 18px; min-height: 124px; transition:.22s ease; }
.mini-card:hover { border-color:rgba(34,211,238,.28); background:rgba(15,31,49,.76); }
.mini-card strong { display: block; margin-top: 8px; font-family: "Space Grotesk"; font-size: 18px; }
.mini-card span { color: #9caac0; font-size: 13px; line-height: 1.45; display: block; margin-top: 6px; }

.flow { display: grid; gap: 14px; }
.flow-row { display: grid; grid-template-columns: repeat(8, minmax(100px,1fr)); gap: 10px; align-items: stretch; }
.flow-row.expansion { grid-template-columns: repeat(4, minmax(120px,1fr)); max-width: 720px; margin-top: 12px; }
.flow-step {
  border: 1px solid rgba(34, 211, 238, .22); background: rgba(6, 18, 32, .78); color: #e8f7ff; border-radius: 18px;
  padding: 16px 12px; text-align: center; font-weight: 900; font-size: 13px; position: relative; box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.flow-step:not(:last-child)::after { content: "→"; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); color: var(--cyan); z-index: 2; }
.timeline-flow { display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap:16px; counter-reset: leadpath; }
.timeline-flow .card { counter-increment: leadpath; }
.timeline-flow .card::before {
  content: counter(leadpath, decimal-leading-zero); display:inline-flex; width:42px;height:42px; align-items:center;justify-content:center;
  border-radius:14px; background:rgba(34,211,238,.10); border:1px solid rgba(34,211,238,.24); color:#70eaff; font-weight:900; margin-bottom:16px;
}
.category-band { margin: 34px 0 18px; display:flex; align-items:center; gap:14px; }
.category-band::after { content:""; flex:1; height:1px; background:linear-gradient(90deg,rgba(34,211,238,.30),transparent); }
.category-band h2 { font-size: clamp(26px,3vw,38px); }

.crm-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, .65fr); gap: 24px; align-items: stretch; }
.crm-panel { border: 1px solid rgba(34, 211, 238, .20); border-radius: 28px; padding: 28px; background: radial-gradient(circle at 20% 0%, rgba(34,211,238,.12), transparent 40%), rgba(8, 18, 32, .76); }
.crm-mockup { border: 1px solid rgba(34,211,238,.20); border-radius: 30px; background: radial-gradient(circle at 24% 0%, rgba(34,211,238,.16), transparent 42%), rgba(5, 14, 28, .75); padding: 20px; box-shadow: var(--shadow); }
.mock-top, .mock-card { border: 1px solid rgba(148, 163, 184, .15); background: rgba(15, 23, 42, .62); border-radius: 18px; padding: 18px; }
.mock-bar { height: 11px; border-radius: 20px; background: linear-gradient(90deg, rgba(34,211,238,.75), rgba(37,99,235,.35)); margin-top: 12px; }
.mock-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap:12px; }
.mock-lead { min-height: 130px; border:1px solid rgba(148,163,184,.16); background:rgba(15,23,42,.68); border-radius:18px; padding:16px; }

.pricing-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.price-card { display: flex; flex-direction: column; min-height: 450px; }
.price { margin-top: 18px; padding: 16px; border-radius: 18px; background: rgba(34, 211, 238, .08); border: 1px solid rgba(34, 211, 238, .19); }
.price strong { display: block; color: #69e8ff; font-size: 22px; line-height: 1.15; }
.price span { display: block; color: #a8b9cc; font-size: 13px; margin-top: 5px; }
.featured { border-color: rgba(34, 211, 238, .45); box-shadow: 0 30px 80px rgba(34, 211, 238, .10); }
.combo-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; align-items: start; }
.combo-card { padding: 22px; min-height: 390px; display: flex; flex-direction: column; }
.combo-card .badge { align-self: start; margin-bottom: 14px; }
.badge {
  display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(34,211,238,.10); border: 1px solid rgba(34,211,238,.30);
  color: #7aeaff; font-weight: 900; letter-spacing: .10em; text-transform: uppercase; font-size: 11px;
}
.combo-card h3 { font-size: 25px; min-height: 50px; }
.combo-desc { color: #adbad0; font-size: 14px; line-height: 1.45; min-height: 54px; margin: 10px 0 0; }
.combo-price { margin: 12px 0 0; color: #5de0ff; font-weight: 900; font-size: 22px; line-height: 1.18; min-height: 54px; }
.combo-fit { margin-top: 12px; padding: 13px; border-radius: 16px; background: rgba(15, 23, 42, .62); border: 1px solid rgba(148, 163, 184, .14); color: #c5d3e4; line-height: 1.45; font-size: 14px; min-height: 82px; }
.details { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; margin-top: 14px; }
.details > * { overflow: hidden; }
.combo-card.open .details { grid-template-rows: 1fr; }
.combo-toggle {
  margin-top: auto; width: 100%; border: 1px solid rgba(148, 163, 184, .22); background: rgba(15, 23, 42, .65); color: #dbeafe;
  min-height: 44px; border-radius: 16px; font-weight: 900; cursor: pointer;
}
.services-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.service-card { min-height: 370px; display: flex; flex-direction: column; }
.service-price { margin-top: 18px; padding: 14px; border-radius: 16px; background: rgba(34,211,238,.08); border: 1px solid rgba(34,211,238,.20); color: #57e2ff; font-weight: 900; line-height: 1.4; }
.timeline { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; counter-reset: step; }
.timeline .card { counter-increment: step; }
.timeline .card::before {
  content: counter(step, decimal-leading-zero); display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center;
  border-radius: 14px; background: rgba(34,211,238,.10); border: 1px solid rgba(34,211,238,.25); color: #5de0ff; font-weight: 900; margin-bottom: 18px;
}
.faq { display: grid; gap: 12px; }
.faq-item { border: 1px solid rgba(148, 163, 184, .16); background: rgba(15, 23, 42, .62); border-radius: 18px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; background: transparent; border: 0; color: var(--text); display: flex; justify-content: space-between; gap: 14px; padding: 20px; cursor: pointer; font-weight: 900; }
.faq-answer { display: none; padding: 0 20px 20px; color: #aebcd0; line-height: 1.55; }
.faq-item.open .faq-answer { display: block; }
.cta-section { padding: 90px 0; }
.cta-card {
  text-align: center; border: 1px solid rgba(34,211,238,.25); border-radius: 34px;
  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));
  padding: 56px 30px; box-shadow: var(--shadow);
}
.cta-card p { margin-left: auto; margin-right: auto; }
.contact-line { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 24px; color: #aebcd0; font-weight: 700; }
.contact-intent-grid { display:grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap:12px; margin-top:28px; }
.intent-card { padding:16px; border-radius:18px; border:1px solid rgba(34,211,238,.18); background:rgba(15,23,42,.62); font-weight:900; text-align:center; transition:.22s ease; }
.intent-card:hover { border-color:rgba(34,211,238,.36); transform: translateY(-2px); }
footer { border-top: 1px solid rgba(148, 163, 184, .12); padding: 34px 0; color: #8190a5; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.mobile-panel { display: none; }
.link-card { min-height: 245px; }
.top-spacer { margin-top: 24px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 58px; height: 58px; display:grid; place-items:center;
  border-radius: 999px; background: linear-gradient(135deg, #22d3ee, #2563eb); color:#03101b; font-weight:900; box-shadow: 0 18px 48px rgba(34,211,238,.26);
}

@media (max-width: 1180px) {
  .nav-links { display: none; }
  .mobile-menu-button { display: inline-grid; place-items: center; }
  .mobile-panel {
    position: fixed; inset: 76px 14px auto; z-index: 101;
    border: 1px solid rgba(34,211,238,.25);
    background: radial-gradient(circle at 10% 0%, rgba(34,211,238,.14), transparent 38%), rgba(4, 12, 24, .96);
    border-radius: 22px; box-shadow: var(--shadow); padding: 16px; backdrop-filter: blur(22px); transform-origin: top;
  }
  .mobile-panel.open { display: grid; gap: 8px; animation: menuIn .18s ease both; }
  @keyframes menuIn { from { opacity:0; transform: translateY(-8px) scale(.98); } to { opacity:1; transform: translateY(0) scale(1); } }
  .mobile-panel a { padding: 15px 13px; color: #dcecff; font-weight: 850; border-radius: 14px; background: rgba(15,23,42,.58); }
}
@media (max-width: 1040px) {
  .hero-grid, .page-hero-grid, .crm-layout { grid-template-columns: 1fr; }
  .visual-card { min-height: 450px; }
  .visual-context { min-height: 360px; }
  .grid-4, .pricing-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3, .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .problem-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .flow-row { grid-template-columns: repeat(4, minmax(120px,1fr)); }
  .timeline, .timeline-flow { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .combo-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; margin-inline: -20px; padding-inline: 20px; }
  .combo-card { flex: 0 0 min(82vw, 360px); scroll-snap-align: start; }
  .contact-intent-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 58px 0; }
  .page-hero { padding: 52px 0 34px; }
  .hero { padding: 52px 0 58px; min-height: auto; }
  .brand img { width: 92px; }
  .brand-badge { display: none; }
  .header-actions .btn { display: none; }
  h1 { font-size: clamp(38px, 11vw, 56px); }
  h2 { font-size: clamp(30px, 8vw, 42px); }
  .lead { font-size: 16px; margin-top: 16px; }
  .hero-actions { flex-direction: column; margin-top: 24px; }
  .btn { width: 100%; }
  .chips { margin-top: 22px; }
  .chip { font-size: 12px; padding: 9px 11px; }
  .visual-card { min-height: 380px; border-radius: 24px; }
  .system-panel { inset:18px; }
  .module { padding: 12px; border-radius: 16px; }
  .module-1 { top: 22px; left: 18px; right: 18px; }
  .module-2 { top: 128px; left: 18px; width: calc(50% - 24px); }
  .module-3 { top: 128px; right: 18px; width: calc(50% - 24px); }
  .module-4 { top: 240px; left: 18px; right: 18px; }
  .module-5 { bottom: 18px; left: 18px; right: 18px; }
  .module strong { font-size: 14px; }
  .module span { font-size: 11px; }
  .status-pill { font-size: 10px; padding:6px 8px; }
  .connector { left: 34px; right: 34px; }
  .connector.c1 { top: 108px; } .connector.c2 { top: 222px; } .connector.c3 { bottom: 92px; }
  .visual-context { min-height: 330px; padding: 18px; border-radius: 24px; }
  .visual-grid { gap: 8px; }
  .visual-mini { min-height: 74px; padding: 11px; border-radius: 15px; }
  .visual-mini strong { font-size: 15px; }
  .visual-mini span { font-size: 11px; }
  .visual-row { padding: 11px; border-radius: 14px; }
  .visual-step { padding: 10px; }
  .visual-step .dot { width: 26px; height: 26px; border-radius: 10px; }
  .section-head { display: block; margin-bottom: 26px; }
  .section-head p { margin-top: 14px; }
  .grid-2, .grid-3, .grid-4, .pricing-grid, .services-grid, .timeline, .timeline-flow, .problem-grid, .mock-grid { grid-template-columns: 1fr; }
  .card { padding: 20px; border-radius: 20px; }
  .mini-card { min-height: auto; }
  .price-card, .service-card { min-height: auto; }
  .flow-row, .flow-row.expansion { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
  .flow-step { min-width: 160px; scroll-snap-align: start; }
  .flow-step:not(:last-child)::after { display: none; }
  .combo-card { min-height: 360px; }
  .combo-card h3 { min-height: auto; }
  .combo-desc, .combo-fit, .combo-price { min-height: auto; }
  .footer-grid { display: grid; }
  .cta-section { padding: 66px 0; }
  .cta-card { padding: 38px 18px; }
  .contact-intent-grid { grid-template-columns:1fr; }
  .floating-whatsapp { width: 54px; height:54px; }
}


/* VEXA ajuste final multipágina — premium e preservando pastas internas */
:focus-visible{outline:2px solid rgba(34,211,238,.85);outline-offset:3px;border-radius:12px}.card-icon.icon-svg{font-size:0;display:grid;place-items:center}.card-icon.icon-svg svg{width:28px;height:28px;stroke:var(--cyan);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.floating-whatsapp-upgraded{width:auto!important;min-width:58px!important;height:56px!important;padding:0 16px!important;gap:8px!important;border-radius:999px!important}.floating-whatsapp-upgraded svg{width:23px;height:23px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.floating-whatsapp-upgraded span{font-size:12px;font-weight:900;letter-spacing:.02em}.centered-head{text-align:center;display:block}.centered-head p{margin:14px auto 0;max-width:720px}.center-actions{justify-content:center}.showcase-section,.trust-section{overflow:hidden}.showcase-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.showcase-card{position:relative;min-height:235px;padding:22px;border-radius:26px;border:1px solid rgba(148,163,184,.16);background:linear-gradient(180deg,rgba(255,255,255,.045),transparent 42%),radial-gradient(circle at 16% 0,rgba(34,211,238,.13),transparent 36%),linear-gradient(160deg,rgba(16,30,49,.82),rgba(7,16,30,.78));box-shadow:0 22px 70px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.04);overflow:hidden;transition:.24s ease}.showcase-card:hover,.trust-card:hover{transform:translateY(-4px);border-color:rgba(34,211,238,.36);box-shadow:0 30px 90px rgba(0,0,0,.32),0 0 44px rgba(34,211,238,.08)}.showcase-card h3{font-size:clamp(20px,2vw,26px);line-height:1.08;margin:0 0 9px}.showcase-card p{color:var(--muted-2);font-size:14px;line-height:1.55;margin:0}.mini-ui{margin-top:18px;border:1px solid rgba(34,211,238,.16);border-radius:18px;padding:12px;background:rgba(2,8,18,.48)}.mini-ui span{display:block;height:8px;border-radius:999px;background:linear-gradient(90deg,rgba(34,211,238,.55),rgba(37,99,235,.12));margin:8px 0}.mini-ui span:nth-child(2){width:72%}.mini-ui span:nth-child(3){width:54%}.trust-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}.trust-card{border-radius:20px;border:1px solid rgba(148,163,184,.14);background:rgba(15,23,42,.55);padding:18px;text-align:center;min-height:142px;transition:.24s ease}.trust-card .card-icon{margin:0 auto 12px;width:42px;height:42px}.trust-card strong{display:block;font-size:14px;line-height:1.22}.trust-card p{margin:8px 0 0;color:var(--muted);font-size:12px;line-height:1.45}.combo-diagnosis{padding:30px;border-radius:28px;border:1px solid rgba(34,211,238,.24);background:linear-gradient(135deg,rgba(34,211,238,.10),rgba(37,99,235,.06)),rgba(7,16,30,.72);text-align:center}.combo-diagnosis h2{font-size:clamp(28px,3.2vw,44px)}.combo-diagnosis p{max-width:680px;margin:12px auto 0;color:var(--muted-2);line-height:1.6}.swipe-hint{display:none;color:var(--muted);font-size:12px;font-weight:900;margin:10px 0 10px;padding-left:2px}.combo-toggle[aria-expanded="true"]{border-color:rgba(34,211,238,.45)}
@media(max-width:960px){.showcase-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.trust-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:720px){.floating-whatsapp-upgraded{right:12px!important;bottom:12px!important;height:54px!important}.swipe-hint{display:block}.showcase-grid,.trust-grid,.services-grid,.pricing-grid{display:flex!important;overflow-x:auto;scroll-snap-type:x mandatory;gap:14px;margin-inline:-20px;padding:0 20px 12px;scrollbar-width:none;mask-image:linear-gradient(90deg,transparent 0,#000 24px,#000 calc(100% - 44px),transparent 100%)}.showcase-grid::-webkit-scrollbar,.trust-grid::-webkit-scrollbar,.services-grid::-webkit-scrollbar,.pricing-grid::-webkit-scrollbar{display:none}.showcase-card,.trust-card,.services-grid>.card,.pricing-grid>.card{flex:0 0 min(84vw,344px);scroll-snap-align:center}.showcase-card{min-height:220px}.trust-card{text-align:left}.trust-card .card-icon{margin:0 0 12px}.section-head.centered-head{text-align:left}.centered-head p{margin-left:0}.floating-whatsapp-upgraded span{display:inline}h1{font-size:clamp(38px,11vw,60px)}h2{font-size:clamp(28px,8.5vw,46px)}h3{font-size:clamp(19px,6vw,27px)}}
@media(min-width:721px){.floating-whatsapp-upgraded span{display:none}}


/* Ajustes finais VEXA — combos 5 níveis, SEO/UX final */
.combo-grid-five { grid-template-columns: repeat(5, minmax(240px, 1fr)); align-items: stretch; }
.combo-grid-five .combo-card { min-height: 430px; }
.combo-cta { width: 100%; margin-top: 14px; min-height: 44px; padding: 12px 14px; font-size: 13px; }
.combo-grid-five .combo-toggle { margin-top: auto; }
.combo-grid-five .details { margin-bottom: 12px; }
.combo-grid-five .combo-price { font-size: clamp(19px, 1.45vw, 22px); }
@media(max-width:1320px){ .combo-grid-five { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media(max-width:1040px){ .combo-grid-five { display:flex; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:12px; margin-inline:-20px; padding-inline:20px; scrollbar-width:none; } .combo-grid-five::-webkit-scrollbar{display:none;} .combo-grid-five .combo-card{flex:0 0 min(82vw, 380px); scroll-snap-align:center;} }
@media(max-width:720px){ .combo-cta{font-size:12.5px;} .combo-grid-five .combo-card{min-height:390px;} }



/* ==================================================
   VEXA FINAL V2 — pacote corrigido real, multipágina e cache-bust
   ================================================== */

.floating-whatsapp {
  min-width: 58px;
  gap: .45rem;
}

.floating-whatsapp::after {
  content: "WhatsApp";
  display: none;
  font-size: .78rem;
  font-weight: 900;
}

@media (max-width: 720px) {
  .floating-whatsapp {
    width: auto !important;
    min-width: 118px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
  }
  .floating-whatsapp::after {
    display: inline-block;
  }
}

.swipe-hint {
  display: none;
  color: rgba(191, 207, 225, .72);
  font-size: .78rem;
  font-weight: 800;
  margin: 0 0 .7rem;
}

@media (max-width: 720px) {
  .swipe-hint {
    display: block;
  }
}

.combo-grid-five {
  grid-template-columns: repeat(5, minmax(240px, 1fr));
}

.combo-diagnosis-section .combo-diagnosis {
  border: 1px solid rgba(34, 211, 238, .22);
  background:
    radial-gradient(circle at 20% 0%, rgba(34,211,238,.12), transparent 38%),
    linear-gradient(160deg, rgba(13,30,50,.76), rgba(5,12,24,.84));
  border-radius: 28px;
  padding: 34px 24px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.24);
}

.center-actions {
  justify-content: center;
}



/* ==================================================
   VEXA HOME INSTITUCIONAL REAL — diferenciada de /sistema-vexa/
   ================================================== */

.institutional-home .hero-grid {
  align-items: center;
}

.home-hub-panel {
  position: relative;
  border: 1px solid rgba(34, 211, 238, .22);
  border-radius: 34px;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(34,211,238,.16), transparent 34%),
    radial-gradient(circle at 100% 12%, rgba(37,99,235,.16), transparent 36%),
    linear-gradient(160deg, rgba(10,25,42,.92), rgba(4,12,24,.90));
  box-shadow: 0 30px 92px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.05);
}

.home-hub-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125,211,252,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,211,252,.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.88), rgba(0,0,0,.36));
}

.home-hub-inner {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 26px;
  padding: 20px;
  background: rgba(3,11,22,.56);
  backdrop-filter: blur(10px);
}

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

.hub-top strong {
  color: #f8fbff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.2rem;
  line-height: 1.08;
  max-width: 220px;
  text-align: right;
}

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

.hub-module {
  border: 1px solid rgba(129,230,255,.17);
  border-radius: 20px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), transparent 42%),
    rgba(5,16,30,.78);
  min-height: 142px;
  box-shadow: 0 18px 42px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.03);
}

.hub-icon,
.card-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: #67e8f9;
  border-radius: 14px;
  border: 1px solid rgba(34, 211, 238, .22);
  background: rgba(34, 211, 238, .09);
  margin-bottom: 14px;
}

.hub-icon svg,
.card-icon svg,
.floating-whatsapp svg {
  width: 22px;
  height: 22px;
}

.hub-module strong {
  display: block;
  color: #f8fbff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.02rem;
  line-height: 1.12;
}

.hub-module p {
  margin: 7px 0 0;
  color: #9fb0c5;
  font-size: .82rem;
  line-height: 1.45;
}

.hub-footer {
  margin-top: 16px;
  border: 1px solid rgba(34,211,238,.18);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(34,211,238,.07);
  color: #dff8ff;
  font-weight: 900;
  text-align: center;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.flow-card {
  border: 1px solid rgba(34, 211, 238, .18);
  border-radius: 26px;
  padding: 24px;
  background:
    radial-gradient(circle at 0 0, rgba(34,211,238,.12), transparent 34%),
    rgba(6,18,34,.72);
}

.flow-line,
.process-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flow-line span,
.process-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(129,230,255,.18);
  background: rgba(15,23,42,.68);
  color: #dbeafe;
  font-weight: 850;
  font-size: .84rem;
}

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

.mini-card {
  border: 1px solid rgba(129,230,255,.16);
  border-radius: 18px;
  padding: 16px;
  background: rgba(15,23,42,.62);
}

.mini-card strong {
  color: #f8fbff;
  font-family: "Space Grotesk", Inter, sans-serif;
}

.center-actions {
  justify-content: center;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-height: 56px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  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);
}

.floating-whatsapp span {
  font-size: .82rem;
}

.swipe-hint {
  display: none;
  color: rgba(191, 207, 225, .72);
  font-size: .78rem;
  font-weight: 800;
  margin: 0 0 .7rem;
}

@media (max-width: 1040px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .home-hub-panel {
    max-width: 720px;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .home-hub-panel {
    padding: 14px;
    border-radius: 24px;
  }

  .home-hub-inner {
    padding: 14px;
    border-radius: 20px;
  }

  .hub-top {
    display: block;
  }

  .hub-top strong {
    display: block;
    text-align: left;
    margin-top: 12px;
    max-width: none;
    font-size: 1.05rem;
  }

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

  .hub-module {
    min-height: auto;
    padding: 14px;
  }

  .hub-icon,
  .card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .swipe-hint {
    display: block;
  }

  .solution-home-grid,
  .pain-grid,
  .showcase-grid,
  .trust-section .grid,
  .grid.grid-3,
  .grid.grid-5 {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 14px !important;
    margin-inline: -14px !important;
    padding: 2px 14px 12px !important;
    scrollbar-width: none !important;
  }

  .solution-home-grid::-webkit-scrollbar,
  .pain-grid::-webkit-scrollbar,
  .showcase-grid::-webkit-scrollbar,
  .trust-section .grid::-webkit-scrollbar,
  .grid.grid-3::-webkit-scrollbar,
  .grid.grid-5::-webkit-scrollbar {
    display: none !important;
  }

  .solution-home-grid > *,
  .pain-grid > *,
  .showcase-grid > *,
  .trust-section .grid > *,
  .grid.grid-3 > *,
  .grid.grid-5 > * {
    flex: 0 0 min(84vw, 340px) !important;
    scroll-snap-align: center !important;
  }

  .process-strip {
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-inline: -14px;
    padding: 0 14px 10px;
    scrollbar-width: none;
  }

  .process-strip::-webkit-scrollbar {
    display: none;
  }

  .process-strip span {
    flex: 0 0 auto;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 0 14px;
  }
}


/* ==================================================
   HOME REFINADA PREMIUM — 20260515
   ================================================== */
.home-premium .section,
.home-premium .hero { overflow: clip; }
.home-premium .container { width: min(1180px, calc(100% - 44px)); }
.refined-section { padding: 88px 0; }
.refined-head { align-items: end; margin-bottom: 34px; }
.refined-head > div { max-width: 690px; }
.refined-head p { max-width: 430px; font-size: 15.5px; }
.refined-copy h1 { font-size: clamp(42px, 5.6vw, 78px); line-height: .96; max-width: 760px; }
.refined-copy .lead { max-width: 700px; font-size: clamp(16px, 1.55vw, 19px); line-height: 1.62; margin-top: 18px; }
.refined-copy .hero-actions { margin-top: 26px; }
.refined-home-hero { padding: 82px 0 64px; min-height: auto; }
.refined-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr); gap: 42px; }
.hero-premium-panel { box-shadow: 0 34px 90px rgba(0,0,0,.44), inset 0 1px 0 rgba(255,255,255,.03); }
.hero-premium-panel::after { content: ""; position: absolute; inset: 14px; border-radius: 24px; border: 1px solid rgba(148,163,184,.07); pointer-events:none; }
.refined-hub-top { gap: 20px; align-items: start; }
.refined-hub-top > div:first-child { display: grid; gap: 10px; }
.refined-hub-top strong { text-align: left; max-width: none; font-size: 1.3rem; }
.hub-caption { color: #d5f8ff; font-size: .82rem; font-weight: 800; text-align: right; max-width: 180px; line-height: 1.5; }
.refined-hub-grid { gap: 15px; }
.refined-hub-grid .hub-module { min-height: 150px; display: flex; flex-direction: column; }
.refined-hub-grid .hub-module p { font-size: .84rem; }
.hub-status-row { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 16px; }
.status-mini { border: 1px solid rgba(129,230,255,.14); border-radius: 18px; background: rgba(6,18,32,.68); padding: 12px 13px; display: grid; gap: 3px; }
.status-mini strong { font-size: .84rem; color:#f2fbff; }
.status-mini small { color:#95acc2; font-size: .74rem; }
.status-dot { width: 8px; height: 8px; border-radius: 999px; display:inline-block; background: #3fe4a5; box-shadow: 0 0 0 5px rgba(63,228,165,.12); margin-bottom: 2px; }

.home-service-card,
.pain-card,
.premium-demo,
.compact-combo,
.trust-card-premium,
.process-card { min-height: 100%; }
.home-service-card { padding: 26px 24px; }
.home-service-card h3 { font-size: clamp(20px, 1.8vw, 25px); }
.home-service-card p { max-width: 32ch; }

.pain-card { padding: 22px 22px 20px; }
.pain-card h3 { font-size: clamp(19px, 1.55vw, 23px); line-height: 1.1; }
.pain-card p { margin-top: 10px; }
.small-icon { width: 44px; height: 44px; margin-bottom: 14px; border-radius: 14px; }
.small-icon svg { width: 20px; height: 20px; }

.home-system-grid { align-items: center; grid-template-columns: minmax(0, .9fr) minmax(420px, .92fr); }
.system-copy-col h2,
.crm-home-copy h2 { font-size: clamp(30px, 3.6vw, 52px); line-height: 1.02; }
.section-mini-copy { color: #98adc3; margin-top: 16px; max-width: 520px; line-height: 1.65; }
.system-map-panel {
  position: relative; border: 1px solid rgba(34,211,238,.18); border-radius: 32px; padding: 24px;
  background: radial-gradient(circle at 15% 0%, rgba(34,211,238,.14), transparent 38%), linear-gradient(160deg, rgba(11,24,39,.90), rgba(5,13,24,.82));
  box-shadow: 0 28px 84px rgba(0,0,0,.32);
}
.system-map-panel::before {
  content: ""; position:absolute; inset:0; border-radius:32px; pointer-events:none;
  background-image: linear-gradient(rgba(125, 211, 252, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(125, 211, 252, .045) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.25));
}
.system-map-head, .system-map-grid, .system-map-footer { position:relative; z-index:1; }
.system-map-head { display:flex; justify-content:space-between; align-items:end; gap:20px; margin-bottom: 18px; }
.system-map-head strong { font-family:"Space Grotesk", Inter, sans-serif; font-size: 1.35rem; }
.system-map-head span { color:#9fb0c5; font-size: .84rem; }
.system-map-grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.system-node {
  min-height: 102px; padding: 16px 14px; border-radius: 20px; border:1px solid rgba(129,230,255,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.032), transparent 40%), rgba(5,14,28,.74);
  display:grid; align-content:space-between; position:relative;
}
.system-node::after {
  content:""; position:absolute; right:-8px; top:50%; width:16px; height:2px; background:linear-gradient(90deg, rgba(34,211,238,.55), rgba(37,99,235,.08));
}
.system-node:nth-child(4)::after, .system-node:nth-child(8)::after { display:none; }
.system-node span { color:#69e8ff; font-weight:900; font-size:.78rem; letter-spacing:.12em; }
.system-node strong { font-family:"Space Grotesk", Inter, sans-serif; font-size:1rem; line-height:1.08; }
.system-map-footer { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 16px; }
.system-status { border:1px solid rgba(129,230,255,.14); border-radius: 18px; padding: 13px 14px; background: rgba(6,18,32,.68); }
.system-status strong { display:block; font-size:.9rem; }
.system-status small { color:#99abc0; font-size:.76rem; }

.premium-demo { padding-top: 18px; }
.premium-demo .mock-window,
.premium-demo .mock-kpi,
.premium-demo .mock-pill-group,
.premium-demo .mock-flow,
.premium-demo .mock-stack {
  height: 66px; border-radius: 18px; border:1px solid rgba(148,163,184,.12); background: rgba(5,14,28,.68); margin-bottom: 16px; position:relative; overflow:hidden;
}
.mock-window { display:flex; align-items:flex-start; gap:6px; padding: 12px; }
.mock-window span { width:8px; height:8px; border-radius:999px; background: rgba(103,232,249,.75); box-shadow: 16px 0 0 rgba(103,232,249,.42), 32px 0 0 rgba(103,232,249,.22); }
.mock-lines::after { content:""; position:absolute; left:12px; right:12px; bottom:12px; height:22px; border-radius:10px; background:linear-gradient(180deg, rgba(34,211,238,.22), rgba(34,211,238,.06)); }
.mock-kpi::before { content:""; position:absolute; left:12px; right:12px; top:16px; height:12px; border-radius:999px; background:linear-gradient(90deg, rgba(103,232,249,.24), rgba(37,99,235,.08)); }
.mock-kpi::after { content:""; position:absolute; left:12px; bottom:12px; width:62%; height:24px; border-radius:12px; background:linear-gradient(90deg, rgba(34,211,238,.20), rgba(37,99,235,.05)); }
.mock-pill-group { display:flex; align-items:center; gap:8px; padding:12px; }
.mock-pill-group span { flex:1; height:18px; border-radius:999px; background:rgba(103,232,249,.18); }
.mock-flow::before, .mock-stack::before { content:""; position:absolute; left:12px; right:12px; top:18px; height:2px; background:linear-gradient(90deg, rgba(34,211,238,.10), rgba(34,211,238,.65), rgba(37,99,235,.12)); }
.mock-flow::after { content:""; position:absolute; left:12px; right:12px; bottom:14px; height:18px; border-radius:10px; background:rgba(34,211,238,.10); }
.mock-stack::after { content:""; position:absolute; left:12px; width:58%; bottom:12px; height:24px; border-radius:10px; background:rgba(37,99,235,.10); }

.combo-home-grid .compact-combo { padding: 22px 22px 20px; }
.compact-combo .badge { margin-bottom: 12px; }
.compact-combo h3 { font-size: clamp(21px, 1.8vw, 26px); }
.combo-foot { display:block; margin-top: 14px; color: #cfeeff; font-size: .83rem; font-weight: 800; }
.combo-cta-wrap { margin-top: 24px; }

.crm-home-grid { display:grid; grid-template-columns: minmax(0, .9fr) minmax(380px, .92fr); gap: 40px; align-items: center; }
.crm-home-copy .feature-tags { display:flex; flex-wrap:wrap; gap:10px; margin-top: 24px; }
.crm-home-copy .feature-tags span { padding: 10px 12px; border-radius: 999px; background: rgba(15,23,42,.68); border:1px solid rgba(148,163,184,.14); color:#dbeafe; font-size:.82rem; font-weight:800; }
.crm-home-visual { position: relative; }
.crm-visual-window {
  border:1px solid rgba(34,211,238,.18); border-radius: 30px; padding: 18px; background: radial-gradient(circle at 20% 0%, rgba(34,211,238,.14), transparent 38%), linear-gradient(160deg, rgba(10,21,37,.88), rgba(4,11,21,.86)); box-shadow: 0 28px 84px rgba(0,0,0,.34);
}
.crm-window-top { display:flex; gap:6px; margin-bottom: 16px; }
.crm-window-top span { width: 8px; height: 8px; border-radius:999px; background:#67e8f9; opacity: .85; }
.crm-visual-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap: 14px; }
.crm-visual-col { display:grid; gap: 14px; }
.crm-visual-card { min-height: 92px; border-radius: 20px; border:1px solid rgba(129,230,255,.14); background: rgba(7,18,32,.74); padding: 16px; }
.crm-visual-card.tall { min-height: 150px; }
.crm-visual-card.accent { background: linear-gradient(180deg, rgba(34,211,238,.12), rgba(5,14,28,.78)); }
.crm-visual-card strong { display:block; font-family:"Space Grotesk", Inter, sans-serif; font-size: 1.02rem; margin-bottom: 6px; }
.crm-visual-card small { color:#99abc0; font-size: .78rem; line-height: 1.45; }

.centered-head { align-items:center; }
.trust-grid-premium { grid-template-columns: repeat(5, minmax(0,1fr)); }
.trust-card-premium { padding: 22px 20px; }
.trust-card-premium h3 { font-size: clamp(18px, 1.45vw, 22px); line-height: 1.12; }
.trust-card-premium p { margin-top: 10px; font-size: 14px; line-height: 1.58; }

.process-home-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.process-card { padding: 22px 22px 20px; }
.process-index {
  display:inline-flex; width:42px; height:42px; align-items:center; justify-content:center; border-radius:14px; margin-bottom: 14px;
  border:1px solid rgba(34,211,238,.22); background: rgba(34,211,238,.10); color:#67e8f9; font-weight:900;
}
.process-card h3 { font-size: clamp(20px, 1.65vw, 24px); }
.process-card p { margin-top: 10px; }

.cta-card { padding: 38px; border-radius: 30px; background: radial-gradient(circle at 10% 0%, rgba(34,211,238,.16), transparent 38%), linear-gradient(160deg, rgba(14,28,44,.86), rgba(6,14,26,.82)); border: 1px solid rgba(34,211,238,.18); box-shadow: 0 24px 72px rgba(0,0,0,.28); }
.cta-card h2 { font-size: clamp(32px, 3.8vw, 52px); line-height: 1.02; max-width: 760px; }
.cta-card p { color: #b8c8da; max-width: 720px; margin-top: 16px; line-height: 1.62; }

@media (max-width: 1160px) {
  .refined-hero-grid,
  .home-system-grid,
  .crm-home-grid { grid-template-columns: 1fr; }
  .hero-premium-panel,
  .system-map-panel,
  .crm-home-visual { max-width: 760px; margin-inline:auto; }
  .section-head.refined-head { align-items: start; flex-direction: column; }
  .section-head.refined-head p { max-width: 620px; }
}

@media (max-width: 720px) {
  .home-premium .container { width: min(100% - 28px, 1180px); }
  .refined-home-hero { padding: 48px 0 44px; }
  .refined-copy h1 { font-size: clamp(34px, 10vw, 52px); line-height: 1.02; }
  .refined-copy .lead { font-size: 15.5px; line-height: 1.65; max-width: none; }
  .refined-section { padding: 62px 0; }
  .refined-head { margin-bottom: 26px; }
  .refined-head h2,
  .system-copy-col h2,
  .crm-home-copy h2,
  .cta-card h2 { font-size: clamp(28px, 8vw, 38px); line-height: 1.05; }
  .hero-premium-panel { border-radius: 24px; }
  .hub-caption { text-align:left; max-width:none; }
  .hub-status-row { grid-template-columns: 1fr; }
  .system-map-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .system-node:nth-child(2)::after, .system-node:nth-child(4)::after, .system-node:nth-child(6)::after, .system-node:nth-child(8)::after { display:none; }
  .system-node { min-height: 88px; }
  .system-map-footer { grid-template-columns: 1fr; }
  .combo-home-grid .compact-combo,
  .trust-card-premium,
  .process-card,
  .home-service-card,
  .pain-card,
  .premium-demo { min-height: auto; }
  .crm-visual-grid { grid-template-columns: 1fr; }
  .trust-grid-premium,
  .process-home-grid,
  .combo-home-grid,
  .solution-home-grid,
  .pain-grid,
  .showcase-grid {
    display: flex !important; overflow-x: auto !important; gap: 14px !important; scroll-snap-type: x mandatory !important;
    margin-inline: -14px !important; padding: 2px 14px 12px !important; scrollbar-width: none !important;
  }
  .trust-grid-premium::-webkit-scrollbar,
  .process-home-grid::-webkit-scrollbar,
  .combo-home-grid::-webkit-scrollbar,
  .solution-home-grid::-webkit-scrollbar,
  .pain-grid::-webkit-scrollbar,
  .showcase-grid::-webkit-scrollbar { display:none !important; }
  .trust-grid-premium > *,
  .process-home-grid > *,
  .combo-home-grid > *,
  .solution-home-grid > *,
  .pain-grid > *,
  .showcase-grid > * { flex: 0 0 min(84vw, 330px) !important; scroll-snap-align: center !important; }
  .cta-card { padding: 26px 22px; }
}

/* Correção da vitrine: cards mais limpos, alinhados e menos decorativos */
.build-showcase-grid { align-items: stretch; }
.build-showcase-grid .build-card {
  padding: 22px;
  min-height: 286px;
  display: grid;
  grid-template-rows: 96px 1fr;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 42%),
    radial-gradient(circle at 84% 94%, rgba(34,211,238,.11), transparent 42%),
    rgba(9, 19, 33, .78);
}
.build-showcase-grid .build-card::after { opacity: .45; height: 120px; }
.build-visual {
  position: relative;
  border: 1px solid rgba(129, 230, 255, .13);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(5,14,28,.86), rgba(8,23,38,.72));
  overflow: hidden;
  min-height: 96px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}
.build-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(103,232,249,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103,232,249,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.08));
}
.build-browser {
  position: absolute;
  left: 14px;
  top: 13px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.build-browser span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(103,232,249,.82);
}
.build-browser span:nth-child(2) { opacity: .55; }
.build-browser span:nth-child(3) { opacity: .3; }
.build-lines {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  display: grid;
  gap: 8px;
  z-index: 2;
}
.build-lines i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(103,232,249,.24), rgba(37,99,235,.10));
}
.build-lines i:nth-child(1) { width: 88%; }
.build-lines i:nth-child(2) { width: 64%; }
.build-lines i:nth-child(3) { width: 42%; opacity: .7; }
.build-chip {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(34,211,238,.22);
  background: rgba(4, 26, 40, .82);
  color: #a8f3ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.build-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
}
.build-content .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 14px;
}
.build-content .card-icon svg { width: 21px; height: 21px; }
.build-content h3 {
  font-size: clamp(21px, 1.85vw, 27px);
  line-height: 1.08;
  letter-spacing: -.04em;
  max-width: 11.5em;
}
.build-content p {
  font-size: 15px;
  line-height: 1.58;
  margin-top: 12px;
  max-width: 30ch;
}
.build-card.mock-crm {
  border-color: rgba(34,211,238,.36);
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 42%),
    radial-gradient(circle at 78% 86%, rgba(34,211,238,.16), transparent 46%),
    rgba(9, 19, 33, .84);
}
.build-card.mock-crm .build-lines { grid-template-columns: 1fr 1fr; gap: 8px; }
.build-card.mock-crm .build-lines i { width: auto; height: 22px; border-radius: 10px; }
.build-card.mock-ai .build-lines { grid-template-columns: 1fr 1.35fr; }
.build-card.mock-ai .build-lines i { width: auto; height: 18px; border-radius: 999px; }
.build-card.mock-auto .build-lines i:nth-child(1) { width: 100%; height: 2px; margin-top: 8px; }
.build-card.mock-auto .build-lines i:nth-child(2),
.build-card.mock-auto .build-lines i:nth-child(3) { width: 46%; height: 18px; }
.build-card.mock-system .build-lines { grid-template-columns: repeat(3, 1fr); }
.build-card.mock-system .build-lines i { width: auto; height: 24px; border-radius: 12px; }

@media (max-width: 720px) {
  .build-showcase-grid .build-card {
    grid-template-rows: 86px 1fr;
    min-height: 268px;
    padding: 20px;
  }
  .build-content h3 { font-size: 22px; max-width: 12em; }
  .build-content p { font-size: 14.5px; }
  .build-visual { min-height: 86px; }
}




/* Background vivo e discreto */
.home-premium,
body:has(.home-premium) {
  position: relative;
}

.home-premium::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(34, 211, 238, .105), transparent 30%),
    radial-gradient(circle at 82% 28%, rgba(37, 99, 235, .11), transparent 34%),
    radial-gradient(circle at 48% 78%, rgba(14, 165, 233, .07), transparent 30%);
  filter: blur(2px);
  animation: vexaAmbientDrift 22s ease-in-out infinite alternate;
}

.home-premium::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(125, 211, 252, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, .035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 20%, rgba(0,0,0,.75), transparent 72%);
  animation: vexaGridDrift 34s linear infinite;
}

/* Hero e painéis flutuantes */
.hero-premium-panel,
.system-map-panel,
.crm-visual-window,
.cta-card {
  isolation: isolate;
}

.hero-premium-panel {
  animation: vexaFloatPanel 7.5s ease-in-out infinite;
}

.system-map-panel {
  animation: vexaFloatPanel 8.4s ease-in-out infinite;
  animation-delay: .6s;
}

.crm-visual-window {
  animation: vexaFloatPanel 9s ease-in-out infinite;
  animation-delay: 1.1s;
}

.hub-module:nth-child(1),
.system-node:nth-child(1),
.crm-visual-card:nth-child(1) {
  animation-delay: .1s;
}

.hub-module:nth-child(2),
.system-node:nth-child(2),
.crm-visual-card:nth-child(2) {
  animation-delay: .55s;
}

.hub-module:nth-child(3),
.system-node:nth-child(3),
.crm-visual-card:nth-child(3) {
  animation-delay: 1s;
}

.hub-module:nth-child(4),
.system-node:nth-child(4),
.crm-visual-card:nth-child(4) {
  animation-delay: 1.45s;
}

/* Linhas com brilho correndo */
.home-hub-inner::after,
.system-map-panel::after,
.crm-visual-window::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(115deg, transparent 0%, transparent 38%, rgba(103,232,249,.14) 48%, transparent 58%, transparent 100%);
  background-size: 230% 230%;
  opacity: .65;
  animation: vexaShimmerLine 8.5s ease-in-out infinite;
}

.home-hub-inner > *,
.system-map-panel > *,
.crm-visual-window > * {
  position: relative;
  z-index: 1;
}

/* Nós/pontos pulsando */
.status-dot,
.system-node span,
.process-index,
.crm-window-top span,
.hub-icon,
.card-icon {
  position: relative;
}

.status-dot::after,
.system-node span::after,
.process-index::after,
.crm-window-top span::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 1px solid rgba(103,232,249,.24);
  opacity: 0;
  transform: scale(.78);
  animation: vexaSoftPulse 3.4s ease-in-out infinite;
}

.system-node:nth-child(2n) span::after,
.process-card:nth-child(2n) .process-index::after,
.crm-window-top span:nth-child(2)::after {
  animation-delay: .9s;
}

.system-node:nth-child(3n) span::after,
.process-card:nth-child(3n) .process-index::after,
.crm-window-top span:nth-child(3)::after {
  animation-delay: 1.55s;
}

/* Sistema VEXA: luz percorrendo a jornada */
.system-map-grid {
  position: relative;
}

.system-map-grid::before {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  top: 50%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(103,232,249,.28), transparent);
  opacity: .45;
}

.system-map-grid::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  left: 2%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  pointer-events: none;
  background: #67e8f9;
  box-shadow: 0 0 18px rgba(103,232,249,.92), 0 0 36px rgba(37,99,235,.48);
  animation: vexaDataTravel 8s ease-in-out infinite;
}

.system-node {
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}

.system-node:nth-child(odd) {
  animation: vexaNodeBreath 5.8s ease-in-out infinite;
}

.system-node:nth-child(even) {
  animation: vexaNodeBreath 6.4s ease-in-out infinite;
  animation-delay: .7s;
}

/* Processo com sensação de stepper vivo */
.process-home-grid {
  position: relative;
}

.process-home-grid::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103,232,249,.22), transparent);
  opacity: .7;
  pointer-events: none;
}

.process-home-grid::after {
  content: "";
  position: absolute;
  left: 4%;
  top: 38px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #67e8f9;
  box-shadow: 0 0 20px rgba(103,232,249,.75), 0 0 34px rgba(37,99,235,.45);
  pointer-events: none;
  animation: vexaProcessTravel 9s ease-in-out infinite;
}

/* CRM: interface viva */
.crm-visual-card {
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}

.crm-visual-card::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(103,232,249,.06), rgba(103,232,249,.48), rgba(37,99,235,.08));
  opacity: .34;
  transform-origin: left;
  animation: vexaMiniProgress 6s ease-in-out infinite;
}

.crm-visual-card:nth-child(2)::after { animation-delay: .8s; }
.crm-visual-card:nth-child(3)::after { animation-delay: 1.3s; }

/* Cards premium hover */
.card,
.hub-module,
.mini-card,
.system-node,
.crm-visual-card,
.status-mini,
.flow-line span,
.process-strip span {
  transition:
    transform .34s cubic-bezier(.2,.8,.2,1),
    border-color .34s ease,
    box-shadow .34s ease,
    background .34s ease,
    color .34s ease;
}

@media (hover: hover) {
  .card:hover,
  .hub-module:hover,
  .mini-card:hover,
  .system-node:hover,
  .crm-visual-card:hover,
  .status-mini:hover {
    transform: translateY(-5px);
    border-color: rgba(103,232,249,.34);
    box-shadow: 0 24px 70px rgba(0,0,0,.32), 0 0 0 1px rgba(103,232,249,.055), 0 0 34px rgba(34,211,238,.09);
  }

  .card:hover .card-icon,
  .hub-module:hover .hub-icon {
    transform: translateY(-2px) scale(1.035);
    border-color: rgba(103,232,249,.42);
    box-shadow: 0 0 28px rgba(34,211,238,.14);
  }

  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 42px rgba(34, 211, 238, .18);
  }

  .chip:hover {
    transform: translateY(-2px);
    border-color: rgba(103,232,249,.36);
    background: rgba(34,211,238,.09);
  }
}

/* Botões com gradiente vivo */
.btn-primary {
  position: relative;
  overflow: hidden;
  background-size: 180% 180%;
  animation: vexaButtonGradient 8s ease-in-out infinite;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, transparent 38%, rgba(255,255,255,.22) 48%, transparent 60%, transparent 100%);
  transform: translateX(-115%);
  opacity: .65;
  pointer-events: none;
}

@media (hover: hover) {
  .btn-primary:hover::after {
    animation: vexaButtonSweep 1.1s ease;
  }
}

/* Chips com vida sutil */
.chip {
  transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.chips .chip:nth-child(1) { animation: vexaChipBreath 7s ease-in-out infinite; }
.chips .chip:nth-child(2) { animation: vexaChipBreath 7.4s ease-in-out infinite; animation-delay: .6s; }
.chips .chip:nth-child(3) { animation: vexaChipBreath 7.8s ease-in-out infinite; animation-delay: 1.1s; }
.chips .chip:nth-child(4) { animation: vexaChipBreath 8.2s ease-in-out infinite; animation-delay: 1.5s; }
.chips .chip:nth-child(5) { animation: vexaChipBreath 8.6s ease-in-out infinite; animation-delay: 1.9s; }
.chips .chip:nth-child(6) { animation: vexaChipBreath 9s ease-in-out infinite; animation-delay: 2.3s; }

/* Mockups com movimento discreto */
.mock-window,
.mock-kpi,
.mock-pill-group,
.mock-flow,
.mock-stack {
  animation: vexaMockFloat 7s ease-in-out infinite;
}

.premium-demo:nth-child(2n) .mock-window,
.premium-demo:nth-child(2n) .mock-kpi,
.premium-demo:nth-child(2n) .mock-pill-group,
.premium-demo:nth-child(2n) .mock-flow,
.premium-demo:nth-child(2n) .mock-stack {
  animation-delay: .9s;
}

.premium-demo:nth-child(3n) .mock-window,
.premium-demo:nth-child(3n) .mock-kpi,
.premium-demo:nth-child(3n) .mock-pill-group,
.premium-demo:nth-child(3n) .mock-flow,
.premium-demo:nth-child(3n) .mock-stack {
  animation-delay: 1.5s;
}

/* Scroll reveal progressivo */
.home-premium .section,
.home-premium .hero-copy,
.home-premium .home-hub-panel,
.home-premium .card,
.home-premium .system-map-panel,
.home-premium .crm-home-visual,
.home-premium .cta-card {
  animation-name: vexaRevealUp;
  animation-duration: .78s;
  animation-timing-function: cubic-bezier(.2,.8,.2,1);
  animation-fill-mode: both;
}

.home-premium .card:nth-child(1) { animation-delay: .04s; }
.home-premium .card:nth-child(2) { animation-delay: .09s; }
.home-premium .card:nth-child(3) { animation-delay: .14s; }
.home-premium .card:nth-child(4) { animation-delay: .19s; }
.home-premium .card:nth-child(5) { animation-delay: .24s; }
.home-premium .card:nth-child(6) { animation-delay: .29s; }

/* WhatsApp floating corrigido */
.floating-whatsapp {
  width: auto !important;
  min-width: 58px !important;
  height: 58px !important;
  min-height: 58px !important;
  padding: 0 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  overflow: visible !important;
  line-height: 1 !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(34,211,238,.98), rgba(37,99,235,.98)) !important;
  box-shadow: 0 18px 48px rgba(34,211,238,.26), 0 0 0 6px rgba(34,211,238,.07) !important;
  animation: vexaWhatsPulse 4.8s ease-in-out infinite;
}

.floating-whatsapp .wa-icon,
.floating-whatsapp svg {
  flex: 0 0 auto !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  display: block !important;
  overflow: visible !important;
  color: #ffffff !important;
}

.floating-whatsapp span {
  display: inline-block !important;
  color: #ffffff !important;
  font-size: .84rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  transform: translateY(1px);
}

@media (hover: hover) {
  .floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(34,211,238,.34), 0 0 0 8px rgba(34,211,238,.08) !important;
  }
}

/* Keyframes */
@keyframes vexaAmbientDrift {
  0% { transform: translate3d(-1.2%, -1%, 0) scale(1); opacity: .78; }
  100% { transform: translate3d(1.4%, 1%, 0) scale(1.035); opacity: .94; }
}

@keyframes vexaGridDrift {
  0% { background-position: 0 0; opacity: .46; }
  100% { background-position: 58px 58px; opacity: .62; }
}

@keyframes vexaFloatPanel {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -7px, 0); }
}

@keyframes vexaShimmerLine {
  0%, 20% { background-position: 120% 0; opacity: .22; }
  55% { opacity: .7; }
  100% { background-position: -120% 0; opacity: .22; }
}

@keyframes vexaSoftPulse {
  0%, 100% { opacity: 0; transform: scale(.78); }
  45% { opacity: .7; transform: scale(1.12); }
}

@keyframes vexaDataTravel {
  0%, 10% { left: 2%; opacity: 0; }
  18% { opacity: 1; }
  82% { opacity: 1; }
  92%, 100% { left: 96%; opacity: 0; }
}

@keyframes vexaProcessTravel {
  0%, 10% { left: 4%; opacity: 0; }
  18% { opacity: 1; }
  82% { opacity: 1; }
  92%, 100% { left: 94%; opacity: 0; }
}

@keyframes vexaNodeBreath {
  0%, 100% { box-shadow: 0 0 0 rgba(34,211,238,0); }
  50% { box-shadow: 0 0 30px rgba(34,211,238,.08); }
}

@keyframes vexaMiniProgress {
  0%, 100% { transform: scaleX(.28); opacity: .18; }
  50% { transform: scaleX(1); opacity: .48; }
}

@keyframes vexaButtonGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes vexaButtonSweep {
  0% { transform: translateX(-115%); }
  100% { transform: translateX(115%); }
}

@keyframes vexaChipBreath {
  0%, 100% { box-shadow: 0 0 0 rgba(34,211,238,0); border-color: rgba(148,163,184,.14); }
  50% { box-shadow: 0 0 24px rgba(34,211,238,.07); border-color: rgba(103,232,249,.24); }
}

@keyframes vexaMockFloat {
  0%, 100% { transform: translateY(0); opacity: .96; }
  50% { transform: translateY(-3px); opacity: 1; }
}

@keyframes vexaRevealUp {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes vexaWhatsPulse {
  0%, 100% { box-shadow: 0 18px 48px rgba(34,211,238,.24), 0 0 0 6px rgba(34,211,238,.06); }
  50% { box-shadow: 0 20px 58px rgba(34,211,238,.34), 0 0 0 10px rgba(34,211,238,.085); }
}

/* Mobile e performance */
@media (max-width: 720px) {
  .system-map-grid::before,
  .system-map-grid::after,
  .process-home-grid::before,
  .process-home-grid::after {
    display: none !important;
  }

  .floating-whatsapp {
    right: max(14px, env(safe-area-inset-right)) !important;
    bottom: max(14px, env(safe-area-inset-bottom)) !important;
    height: 52px !important;
    min-height: 52px !important;
    min-width: 118px !important;
    padding: 0 14px !important;
  }

  .floating-whatsapp .wa-icon,
  .floating-whatsapp svg {
    width: 25px !important;
    height: 25px !important;
    min-width: 25px !important;
    min-height: 25px !important;
  }

  .floating-whatsapp span {
    font-size: .8rem !important;
  }

  .home-premium::after {
    background-size: 46px 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}



/* ==================================================
   VEXA SITE PRINCIPAL — MOTION FINAL PREMIUM SEM GTM — 20260515
   Correção: sem blinking/piscadas, painéis internos modernos, WhatsApp corrigido
   ================================================== */

/* Neutraliza animações anteriores que pareciam piscar */
.home-premium .section,
.home-premium .hero-copy,
.home-premium .home-hub-panel,
.home-premium .card,
.home-premium .system-map-panel,
.home-premium .crm-home-visual,
.home-premium .cta-card,
.card,
.hub-module,
.system-node,
.crm-visual-card,
.process-card,
.trust-card-premium,
.premium-demo {
  opacity: 1 !important;
}

/* Background premium vivo, mas lento e quase imperceptível */
body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: -18%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(34, 211, 238, .085), transparent 34%),
    radial-gradient(circle at 85% 32%, rgba(37, 99, 235, .085), transparent 36%),
    radial-gradient(circle at 45% 82%, rgba(14, 165, 233, .052), transparent 32%);
  animation: vexaAmbientSlow 28s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(125, 211, 252, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, .026) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 22%, rgba(0,0,0,.70), transparent 72%);
  animation: vexaGridSlow 46s linear infinite;
}

/* Motion base: flutuação sem piscar */
.hero-premium-panel,
.home-hub-panel,
.page-hero-panel,
.system-map-panel,
.crm-visual-window,
.crm-home-visual,
.cta-card {
  animation: vexaSoftFloat 8.5s ease-in-out infinite !important;
  will-change: transform;
}

.page-hero-panel:nth-child(2n),
.system-map-panel,
.crm-visual-window {
  animation-duration: 9.5s !important;
  animation-delay: .8s !important;
}

.hub-module,
.system-node,
.crm-visual-card,
.process-card,
.trust-card-premium,
.premium-demo {
  animation: vexaMicroFloat 7.5s ease-in-out infinite !important;
  will-change: transform;
}

.hub-module:nth-child(2n),
.system-node:nth-child(2n),
.crm-visual-card:nth-child(2n),
.process-card:nth-child(2n),
.trust-card-premium:nth-child(2n),
.premium-demo:nth-child(2n) {
  animation-delay: .9s !important;
  animation-duration: 8.6s !important;
}

.hub-module:nth-child(3n),
.system-node:nth-child(3n),
.crm-visual-card:nth-child(3n),
.process-card:nth-child(3n),
.trust-card-premium:nth-child(3n),
.premium-demo:nth-child(3n) {
  animation-delay: 1.6s !important;
  animation-duration: 9.2s !important;
}

/* Linhas de dados: brilho correndo sem ligar/desligar agressivo */
.home-hub-inner,
.system-map-panel,
.crm-visual-window,
.page-hero-panel,
.process-home-grid,
.process-timeline-mini,
.panel-flow-grid {
  position: relative;
  overflow: hidden;
}

.home-hub-inner::after,
.system-map-panel::after,
.crm-visual-window::after,
.page-hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0%, transparent 42%, rgba(103,232,249,.105) 50%, transparent 58%, transparent 100%);
  background-size: 250% 250%;
  opacity: .38 !important;
  animation: vexaDataSheen 11s ease-in-out infinite !important;
}

.home-hub-inner > *,
.system-map-panel > *,
.crm-visual-window > *,
.page-hero-panel > * {
  position: relative;
  z-index: 1;
}

/* Pontos/nós com pulso mínimo, sem piscada */
.status-dot::after,
.system-node span::after,
.process-index::after,
.crm-window-top span::after,
.panel-node span::after,
.process-mini-step span::after {
  opacity: .18 !important;
  animation: vexaNodePulseSoft 4.6s ease-in-out infinite !important;
}

/* Painéis contextuais das páginas internas */
.hero-with-panel .container,
.hero-with-panel .hero-grid,
.hero-with-panel > .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .88fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.page-hero-panel {
  border: 1px solid rgba(34,211,238,.22);
  border-radius: 32px;
  padding: 24px;
  background:
    radial-gradient(circle at 14% 0%, rgba(34,211,238,.13), transparent 38%),
    radial-gradient(circle at 100% 20%, rgba(37,99,235,.11), transparent 42%),
    linear-gradient(160deg, rgba(10,25,42,.90), rgba(4,12,24,.88));
  box-shadow: 0 30px 86px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.04);
  min-height: 420px;
}

.page-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(125,211,252,.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,211,252,.042) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.32));
}

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

.panel-top strong {
  color: #f8fbff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.08;
  max-width: 260px;
  text-align: right;
}

.panel-flow-grid,
.panel-quadrants,
.service-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.panel-node,
.panel-quadrant,
.service-module,
.combo-level,
.process-mini-step,
.crm-kpi,
.crm-board > div,
.crm-alerts span,
.contact-options-mini a {
  border: 1px solid rgba(129,230,255,.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.034), transparent 45%),
    rgba(5,16,30,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}

.panel-node {
  min-height: 92px;
  padding: 14px;
  display: grid;
  align-content: space-between;
}

.panel-node span,
.process-mini-step span,
.combo-level span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(34,211,238,.10);
  border: 1px solid rgba(34,211,238,.22);
  color: #67e8f9;
  font-weight: 950;
  font-size: .72rem;
  letter-spacing: .08em;
  position: relative;
}

.panel-node strong,
.panel-quadrant strong,
.service-module strong,
.combo-level strong,
.process-mini-step strong {
  color: #f8fbff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: .98rem;
  line-height: 1.12;
}

.panel-footer-mini,
.panel-line-note {
  margin-top: 16px;
  border: 1px solid rgba(34,211,238,.16);
  border-radius: 18px;
  padding: 13px 14px;
  background: rgba(34,211,238,.065);
  color: #c9f7ff;
  font-size: .82rem;
  font-weight: 850;
}

.panel-footer-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  text-align: center;
}

/* Mapa soluções */
.panel-quadrant {
  min-height: 132px;
  padding: 16px;
}

.panel-icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(34,211,238,.22);
  background: rgba(34,211,238,.09);
  color: #67e8f9;
  margin-bottom: 12px;
}

.panel-icon svg {
  width: 20px;
  height: 20px;
}

.panel-quadrant p {
  margin: 8px 0 0;
  color: #9fb0c5;
  font-size: .8rem;
  line-height: 1.45;
}

/* Combos */
.combo-levels {
  display: grid;
  gap: 12px;
}

.combo-level {
  min-height: 72px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
}

.combo-level small {
  color: #9fb0c5;
  font-size: .72rem;
  font-weight: 800;
}

.combo-level.is-featured {
  border-color: rgba(34,211,238,.34);
  background: linear-gradient(135deg, rgba(34,211,238,.16), rgba(37,99,235,.08));
}

/* CRM */
.crm-dashboard-mini {
  display: grid;
  gap: 14px;
}

.crm-dashboard-mini .crm-kpi {
  display: inline-grid;
  padding: 14px;
}

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

.crm-board {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}

.crm-board > div {
  padding: 14px;
  min-height: 116px;
}

.crm-board b {
  display: block;
  margin-bottom: 13px;
  color: #f8fbff;
}

.crm-board span {
  display: block;
  height: 12px;
  border-radius: 999px;
  margin-top: 8px;
  background: linear-gradient(90deg, rgba(34,211,238,.28), rgba(37,99,235,.08));
}

.crm-alerts {
  grid-column: 1 / -1;
  display: grid;
  gap: 9px;
}

.crm-alerts span {
  padding: 10px 12px;
  color: #cfeeff;
  font-size: .78rem;
  font-weight: 800;
}

/* Serviços */
.service-module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-module {
  min-height: 118px;
  padding: 15px;
  display: grid;
  align-content: center;
  justify-items: start;
}

/* Processo */
.process-timeline-mini {
  display: grid;
  gap: 12px;
}

.process-mini-step {
  min-height: 66px;
  padding: 12px 13px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
}

/* Contato */
.contact-options-mini {
  display: grid;
  gap: 10px;
}

.contact-options-mini a {
  padding: 13px 14px;
  color: #f8fbff;
  font-weight: 850;
}

.panel-whatsapp-cta {
  margin-top: 16px;
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 16px;
  background: linear-gradient(135deg, #22d3ee, #2563eb);
  color: #fff;
  font-weight: 950;
}

.panel-whatsapp-cta .wa-icon {
  width: 24px;
  height: 24px;
  display: block;
}

/* Hover elegante */
@media (hover: hover) {
  .card:hover,
  .hub-module:hover,
  .system-node:hover,
  .crm-visual-card:hover,
  .process-card:hover,
  .trust-card-premium:hover,
  .premium-demo:hover,
  .panel-node:hover,
  .panel-quadrant:hover,
  .service-module:hover,
  .combo-level:hover,
  .process-mini-step:hover,
  .crm-kpi:hover,
  .crm-board > div:hover,
  .contact-options-mini a:hover {
    transform: translateY(-5px);
    border-color: rgba(103,232,249,.34);
    box-shadow: 0 24px 68px rgba(0,0,0,.30), 0 0 32px rgba(34,211,238,.075);
  }

  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 42px rgba(34,211,238,.16);
  }
}

/* WhatsApp floating corrigido de forma agressiva */
.floating-whatsapp {
  position: fixed !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 999 !important;
  height: 58px !important;
  min-height: 58px !important;
  width: auto !important;
  min-width: 58px !important;
  max-width: calc(100vw - 36px) !important;
  padding: 0 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  overflow: visible !important;
  border-radius: 999px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  color: #fff !important;
  background: linear-gradient(135deg, rgba(34,211,238,.98), rgba(37,99,235,.98)) !important;
  box-shadow: 0 18px 48px rgba(34,211,238,.24), 0 0 0 6px rgba(34,211,238,.06) !important;
  animation: vexaWhatsFloat 7s ease-in-out infinite !important;
}

.floating-whatsapp .wa-icon,
.floating-whatsapp svg {
  flex: 0 0 28px !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  display: block !important;
  overflow: visible !important;
  color: #fff !important;
  transform: none !important;
}

.floating-whatsapp span {
  display: inline-block !important;
  color: #fff !important;
  font-size: .84rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  letter-spacing: 0 !important;
}

/* Botões vivos sem exagero */
.btn-primary {
  position: relative;
  overflow: hidden;
  background-size: 180% 180%;
  animation: vexaButtonGradientSlow 10s ease-in-out infinite !important;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, transparent 40%, rgba(255,255,255,.18) 50%, transparent 62%, transparent 100%);
  transform: translateX(-120%);
  opacity: .58;
  pointer-events: none;
}

@media (hover: hover) {
  .btn-primary:hover::after {
    animation: vexaButtonSweep 1.05s ease;
  }
}

/* Keyframes calmos */
@keyframes vexaAmbientSlow {
  0% { transform: translate3d(-1%, -1%, 0) scale(1); }
  100% { transform: translate3d(1.2%, 1%, 0) scale(1.03); }
}

@keyframes vexaGridSlow {
  0% { background-position: 0 0; }
  100% { background-position: 62px 62px; }
}

@keyframes vexaSoftFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -6px, 0); }
}

@keyframes vexaMicroFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -3px, 0); }
}

@keyframes vexaDataSheen {
  0% { background-position: 125% 0; opacity: .28; }
  50% { opacity: .42; }
  100% { background-position: -125% 0; opacity: .28; }
}

@keyframes vexaNodePulseSoft {
  0%, 100% { transform: scale(.92); opacity: .14; }
  50% { transform: scale(1.08); opacity: .30; }
}

@keyframes vexaWhatsFloat {
  0%, 100% { transform: translateY(0); box-shadow: 0 18px 48px rgba(34,211,238,.24), 0 0 0 6px rgba(34,211,238,.06); }
  50% { transform: translateY(-4px); box-shadow: 0 22px 56px rgba(34,211,238,.30), 0 0 0 7px rgba(34,211,238,.07); }
}

@keyframes vexaButtonGradientSlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes vexaButtonSweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* Mobile */
@media (max-width: 1040px) {
  .hero-with-panel .container,
  .hero-with-panel .hero-grid,
  .hero-with-panel > .container {
    grid-template-columns: 1fr;
  }
  .page-hero-panel {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .page-hero-panel {
    padding: 16px;
    border-radius: 24px;
  }

  .panel-top {
    display: block;
  }

  .panel-top strong {
    display: block;
    text-align: left;
    margin-top: 10px;
    max-width: none;
  }

  .panel-flow-grid,
  .panel-quadrants,
  .service-module-grid,
  .crm-dashboard-mini,
  .crm-board {
    grid-template-columns: 1fr;
  }

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

  .panel-node,
  .panel-quadrant,
  .service-module,
  .combo-level,
  .process-mini-step {
    min-height: auto;
  }

  .combo-level {
    grid-template-columns: 42px 1fr;
  }

  .combo-level small {
    grid-column: 2;
  }

  .floating-whatsapp {
    right: max(14px, env(safe-area-inset-right)) !important;
    bottom: max(14px, env(safe-area-inset-bottom)) !important;
    height: 52px !important;
    min-height: 52px !important;
    min-width: 52px !important;
    padding: 0 14px !important;
  }

  .floating-whatsapp .wa-icon,
  .floating-whatsapp svg {
    flex-basis: 25px !important;
    width: 25px !important;
    height: 25px !important;
    min-width: 25px !important;
    min-height: 25px !important;
    max-width: 25px !important;
    max-height: 25px !important;
  }

  .floating-whatsapp span {
    font-size: .78rem !important;
  }

  body::after {
    background-size: 48px 48px;
  }

  .hero-premium-panel,
  .home-hub-panel,
  .page-hero-panel,
  .system-map-panel,
  .crm-visual-window,
  .crm-home-visual,
  .cta-card,
  .hub-module,
  .system-node,
  .crm-visual-card,
  .process-card,
  .trust-card-premium,
  .premium-demo {
    animation-duration: 10s !important;
  }
}

/* Redução de movimento obrigatória */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
