:root {
  --bg: #03111f;
  --bg-2: #071a2d;
  --surface: rgba(13, 38, 61, .72);
  --surface-solid: #0b2136;
  --line: rgba(117, 205, 255, .18);
  --text: #f4f9ff;
  --muted: #9eb2c7;
  --blue: #1477ff;
  --cyan: #14d9ef;
  --aqua: #24efd9;
  --green: #2fe3a7;
  --shadow: 0 24px 70px rgba(0, 0, 0, .36);
  --radius: 24px;
  --container: 1180px;
  --ease-fluid: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 6%, rgba(17, 111, 255, .14), transparent 28%),
    radial-gradient(circle at 86% 4%, rgba(27, 230, 226, .09), transparent 25%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

body.menu-open { overflow: hidden; }
::selection { background: rgba(20, 217, 239, .3); color: #fff; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }
svg { fill: currentColor; }
a, button { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }

.page-noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .17; z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
}

.cursor-glow {
  width: 420px; height: 420px; border-radius: 50%; position: fixed; left: -200px; top: -200px;
  pointer-events: none; z-index: -1; opacity: .22; filter: blur(8px);
  background: radial-gradient(circle, rgba(20, 217, 239, .22), rgba(20, 119, 255, .06) 50%, transparent 72%);
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
}

.container { width: min(calc(100% - clamp(28px, 4vw, 40px)), var(--container)); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 112px) 0; position: relative; }
.section-tight { padding: clamp(30px, 4vw, 34px) 0 clamp(72px, 8vw, 96px); }
.section-dark { background: linear-gradient(180deg, rgba(4, 19, 33, .24), rgba(8, 27, 46, .82) 52%, rgba(4, 17, 31, .3)); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 6vw, 76px); }
.align-center { align-items: center; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 30; transition: background-color .3s var(--ease-fluid), border-color .3s var(--ease-fluid), backdrop-filter .3s var(--ease-fluid);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(3, 17, 31, .82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-color: rgba(255, 255, 255, .07);
}
.nav-wrap { height: 86px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; min-width: 205px; }
.brand img { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; box-shadow: 0 0 28px rgba(20, 217, 239, .15); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 1.06rem; letter-spacing: -.02em; }
.brand-copy small { color: var(--muted); font-size: .62rem; letter-spacing: .04em; margin-top: 5px; }
.primary-nav { display: flex; gap: 28px; margin-left: auto; }
.primary-nav a { font-size: .91rem; color: #c8d5e2; transition: .2s ease; }
.primary-nav a:hover { color: var(--cyan); }
.menu-toggle { display: none; margin-left: auto; background: none; border: 0; padding: 8px; color: white; }
.menu-toggle span { width: 24px; height: 2px; background: currentColor; display: block; margin: 5px 0; transition: .2s; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px;
  border-radius: 14px; padding: 0 20px; font-weight: 760; letter-spacing: -.01em; border: 1px solid transparent;
  transition: transform .3s var(--ease-fluid), box-shadow .3s var(--ease-fluid), border-color .3s var(--ease-fluid), background .3s var(--ease-fluid);
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; }
.btn-small { min-height: 42px; padding-inline: 16px; font-size: .88rem; }
.btn-primary { color: #001320; background: linear-gradient(120deg, var(--cyan), #29eeea 52%, #51f7cf); box-shadow: 0 12px 30px rgba(20, 217, 239, .18); }
.btn-primary:hover { box-shadow: 0 16px 38px rgba(20, 217, 239, .28); }
.btn-secondary { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .12); color: #eff8ff; }
.btn-secondary:hover, .btn-outline:hover { border-color: rgba(20, 217, 239, .5); background: rgba(20, 217, 239, .07); }
.btn-outline { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.04); }

.hero { min-height: 880px; padding-top: 156px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; width: 760px; height: 760px; border-radius: 50%; right: -280px; top: 50px;
  background: radial-gradient(circle, rgba(0, 219, 255, .14), rgba(16, 100, 255, .07) 42%, transparent 72%); filter: blur(3px);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 42px; align-items: center; }
.hero-copy { min-width: 0; }
.eyebrow, .section-kicker { color: #75eafa; text-transform: uppercase; font-size: .75rem; letter-spacing: .15em; font-weight: 800; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid rgba(38, 219, 239, .18); background: rgba(16, 71, 105, .22); border-radius: 999px; }
.status-dot { width: 7px; height: 7px; background: var(--aqua); border-radius: 50%; box-shadow: 0 0 0 7px rgba(36, 239, 217, .08), 0 0 16px rgba(36, 239, 217, .8); }
.hero h1 { font-size: clamp(2.8rem, 6vw, 6.6rem); line-height: .91; letter-spacing: -.065em; margin: 28px 0 28px; max-width: 750px; overflow-wrap: break-word; }
h1 span, h2 span { background: linear-gradient(105deg, #1b82ff, #16dbed 58%, #4ff5d3); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { max-width: 690px; font-size: 1.17rem; line-height: 1.7; color: #b8c8d9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note { display: flex; align-items: center; gap: 10px; color: #93a8bb; font-size: .91rem; margin-top: 22px; }
.check { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: rgba(36, 239, 217, .09); color: var(--aqua); border: 1px solid rgba(36,239,217,.18); }

.hero-visual { min-height: 590px; position: relative; perspective: 1000px; }
.system-core {
  width: 170px; height: 170px; position: absolute; top: 47%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 50%; display: grid; place-items: center; z-index: 5; background: radial-gradient(circle at 35% 28%, rgba(38, 221, 255, .16), rgba(5, 25, 44, .9) 64%);
  box-shadow: inset 0 0 0 1px rgba(87, 222, 255, .28), 0 0 70px rgba(24, 161, 255, .17), 0 30px 80px rgba(0,0,0,.4);
}
.system-core::before { content: ""; position: absolute; inset: 10px; border: 1px dashed rgba(55, 229, 238, .34); border-radius: inherit; animation: rotateSelf 20s linear infinite; }
.system-core img { width: 92px; height: 92px; object-fit: cover; border-radius: 22px; }
.system-core span { position: absolute; bottom: 18px; font-size: .67rem; color: #77e7ee; letter-spacing: .08em; text-transform: uppercase; }
.system-orbit { position: absolute; border: 1px solid rgba(61, 196, 255, .14); border-radius: 50%; top: 47%; left: 50%; transform: translate(-50%, -50%); }
.orbit-one { width: 390px; height: 390px; animation: breathe 4s ease-in-out infinite; }
.orbit-two { width: 540px; height: 540px; border-style: dashed; animation: rotate 35s linear infinite; }
.orbit-two::after, .orbit-one::after { content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); top: 7%; left: 23%; }
.floating-node { position: absolute; display: flex; align-items: center; gap: 10px; padding: 11px 14px 11px 11px; min-width: 154px; border-radius: 16px; background: rgba(6, 29, 49, .8); border: 1px solid rgba(62, 195, 255, .17); box-shadow: 0 14px 40px rgba(0,0,0,.27); backdrop-filter: blur(14px); z-index: 6; animation: float 4.5s ease-in-out infinite; }
.floating-node small { display: block; color: #7d94aa; font-size: .62rem; text-transform: uppercase; letter-spacing: .09em; }
.floating-node strong { font-size: .83rem; }
.node-icon { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; font-size: .75rem; font-weight: 900; color: #001626; background: linear-gradient(135deg, var(--cyan), var(--aqua)); box-shadow: 0 0 25px rgba(20, 217, 239, .18); }
.node-whatsapp { top: 10%; left: 4%; }
.node-ai { top: 15%; right: -1%; animation-delay: -.8s; }
.node-crm { bottom: 22%; left: -2%; animation-delay: -1.5s; }
.node-calendar { bottom: 13%; right: 0; animation-delay: -2.3s; }
.glass-panel { background: linear-gradient(180deg, rgba(16, 50, 77, .76), rgba(7, 29, 49, .8)); border: 1px solid rgba(91, 206, 255, .16); backdrop-filter: blur(15px); box-shadow: var(--shadow); }

.integration-strip { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 88px; color: #7790a7; font-weight: 700; font-size: .77rem; letter-spacing: .05em; text-transform: uppercase; flex-wrap: wrap; }
.integration-strip i { width: 4px; height: 4px; border-radius: 50%; background: #1cccf0; box-shadow: 0 0 10px #1cccf0; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.08); border-radius: 24px; overflow: hidden; background: rgba(255,255,255,.025); }
.stat-card { padding: 30px; min-height: 184px; position: relative; }
.stat-card + .stat-card { border-left: 1px solid rgba(255,255,255,.08); }
.stat-number { font-size: 3.35rem; line-height: 1; letter-spacing: -.06em; font-weight: 850; color: white; }
.stat-number span:last-child { color: var(--cyan); }
.stat-card p { color: #8fa5b9; font-size: .86rem; line-height: 1.55; margin-bottom: 0; }

.section-copy h2, .section-heading h2 { font-size: clamp(2.45rem, 4vw, 4.15rem); line-height: 1.02; letter-spacing: -.05em; margin: 15px 0 22px; }
.section-copy > p, .section-heading > p { color: #9fb3c6; font-size: 1.03rem; line-height: 1.72; }
.section-copy .muted { color: #71899e; }
.section-heading { max-width: 800px; margin-bottom: 56px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.text-link { display: inline-flex; gap: 8px; margin-top: 12px; color: #65e6ef; font-weight: 800; }
.text-link span { transition: .2s; }
.text-link:hover span { transform: translateX(4px); }

.problem-section { overflow: hidden; }
.problem-section::after { content: ""; position: absolute; width: 560px; height: 560px; left: -320px; top: 80px; border-radius: 50%; background: rgba(16, 115, 255, .07); filter: blur(40px); }
.steps-stack { display: grid; gap: 14px; }
.step-card { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 22px; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: rgba(255,255,255,.025); transition: .25s ease; }
.step-card:hover, .step-card.active { transform: translateX(7px); border-color: rgba(20,217,239,.28); background: linear-gradient(90deg, rgba(19, 113, 255, .08), rgba(20, 217, 239, .05)); }
.step-card > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; font-weight: 850; background: linear-gradient(135deg, rgba(20, 119, 255, .2), rgba(20,217,239,.16)); color: #77ebf1; border: 1px solid rgba(69, 211, 255, .16); }
.step-card h3 { margin: 2px 0 5px; font-size: 1.08rem; }
.step-card p { margin: 0; color: #879db1; font-size: .88rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { min-height: 255px; padding: 26px; border-radius: 22px; border: 1px solid rgba(73, 189, 255, .12); background: linear-gradient(160deg, rgba(15, 43, 67, .8), rgba(6, 24, 42, .68)); position: relative; overflow: hidden; transition: .25s ease; }
.feature-card::after { content: ""; position: absolute; inset: auto -60px -90px auto; width: 160px; height: 160px; border-radius: 50%; background: rgba(17, 174, 255, .08); filter: blur(2px); }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(20, 217, 239, .3); box-shadow: 0 20px 50px rgba(0,0,0,.22); }
.feature-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, #176fff, #1dd9e9); color: white; font-weight: 900; box-shadow: 0 12px 25px rgba(18, 127, 255, .18); }
.feature-card h3 { font-size: 1.13rem; margin: 23px 0 10px; }
.feature-card p { color: #91a7bb; font-size: .9rem; margin: 0; line-height: 1.62; }

.workflow-section { overflow: hidden; }
.workflow-board { display: grid; grid-template-columns: 1fr auto 1.05fr auto 1fr auto 1fr; align-items: center; gap: 14px; padding: 24px; border-radius: 26px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.025); box-shadow: var(--shadow); }
.workflow-column { display: grid; gap: 9px; padding: 14px; border-radius: 18px; background: rgba(8, 30, 50, .72); min-height: 228px; align-content: start; }
.workflow-column small { color: #76dceb; text-transform: uppercase; letter-spacing: .11em; font-weight: 800; margin-bottom: 5px; }
.workflow-column.emphasis { background: linear-gradient(180deg, rgba(16, 92, 145, .25), rgba(7, 33, 54, .82)); border: 1px solid rgba(26, 203, 239, .16); }
.workflow-column.result .flow-chip { border-color: rgba(47, 227, 167, .14); }
.flow-chip { padding: 12px 13px; border-radius: 12px; border: 1px solid rgba(255,255,255,.075); color: #c5d3df; font-size: .82rem; background: rgba(255,255,255,.025); }
.flow-arrow { color: #26dbe7; font-size: 1.25rem; opacity: .7; }

.software-section { background: radial-gradient(circle at 19% 52%, rgba(16, 110, 255, .09), transparent 31%); }
.software-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.code-window { border-radius: 22px; overflow: hidden; transform: perspective(1200px) rotateY(4deg) rotateX(2deg); }
.code-top { height: 48px; display: flex; align-items: center; gap: 8px; padding: 0 16px; border-bottom: 1px solid rgba(255,255,255,.07); color: #758ba0; font-size: .72rem; }
.code-top i { width: 9px; height: 9px; border-radius: 50%; background: #395067; }
.code-top span { margin-left: 8px; }
.code-window pre { margin: 0; padding: 26px; overflow: auto; min-height: 320px; background: rgba(2, 13, 24, .55); }
.code-window code { color: #b7c8d8; font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: .82rem; line-height: 1.9; }
.c-purple { color: #bf8cff; }.c-blue { color: #54d8ff; }.c-green { color: #65e8b0; }
.code-status { padding: 13px 16px; font-family: monospace; font-size: .7rem; color: #81d9be; border-top: 1px solid rgba(255,255,255,.06); }
.code-status span { color: #3af1ae; }
.software-list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 24px; }
.software-list > div { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.software-list b { display: block; font-size: .91rem; margin-bottom: 5px; }
.software-list span { display: block; color: #7f96ab; font-size: .78rem; }

.industry-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 20px; }
.industry-tab { border: 1px solid rgba(255,255,255,.09); color: #8fa7ba; background: rgba(255,255,255,.025); border-radius: 999px; padding: 10px 15px; cursor: pointer; transition: .2s; }
.industry-tab:hover, .industry-tab.active { color: #00131e; border-color: transparent; background: linear-gradient(110deg, #18d8ed, #4af0d7); }
.industry-panel { max-width: 920px; min-height: 210px; margin: 0 auto; border-radius: 24px; padding: 34px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 34px; border: 1px solid rgba(20, 217, 239, .14); background: linear-gradient(120deg, rgba(16, 49, 75, .84), rgba(5, 26, 44, .78)); box-shadow: var(--shadow); transition: min-height .35s var(--ease-fluid), padding .35s var(--ease-fluid); }
.panel-label { color: #67dfe8; text-transform: uppercase; letter-spacing: .12em; font-size: .67rem; font-weight: 800; }
.industry-panel h3 { font-size: 1.7rem; margin: 8px 0 12px; }
.industry-panel p { color: #9cb0c3; margin: 0; }
.panel-benefit { padding-left: 30px; border-left: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column; justify-content: center; }
.panel-benefit span { color: #5eeadf; text-transform: uppercase; letter-spacing: .12em; font-size: .67rem; font-weight: 800; margin-bottom: 8px; }
.panel-benefit strong { line-height: 1.5; }

.process-grid { align-items: start; }
.sticky-copy { position: sticky; top: 140px; }
.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; top: 35px; bottom: 34px; left: 27px; width: 1px; background: linear-gradient(var(--cyan), rgba(20,217,239,.12)); }
.timeline article { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 0 0 34px; position: relative; }
.timeline article > span { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: #0b263d; border: 1px solid rgba(20, 217, 239, .2); color: #61e7ed; font-weight: 900; z-index: 2; box-shadow: 0 0 0 7px #03111f; }
.timeline h3 { margin: 3px 0 6px; font-size: 1.2rem; }
.timeline p { color: #899fb2; margin: 0; font-size: .9rem; }
.sticky-copy .btn { margin-top: 18px; }

.kpi-section { padding-top: 20px; }
.kpi-shell { padding: 46px; border-radius: 28px; background: linear-gradient(120deg, #eaf8ff 0%, #fff 54%, #e6fbfa 100%); color: #06182b; display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: center; }
.kpi-shell h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); line-height: 1; letter-spacing: -.05em; margin: 14px 0 0; }
.kpi-shell .section-kicker { color: #078da6; }
.kpi-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.kpi-tags span { padding: 10px 12px; border-radius: 999px; background: white; border: 1px solid rgba(3, 32, 52, .09); font-size: .78rem; font-weight: 750; box-shadow: 0 4px 16px rgba(12, 38, 57, .05); }

.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 72px; align-items: start; }
.accordion { border-top: 1px solid rgba(255,255,255,.08); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.faq-item button { width: 100%; display: flex; justify-content: space-between; gap: 20px; text-align: left; color: #eef8ff; background: none; border: 0; padding: 22px 0; cursor: pointer; font-weight: 760; }
.faq-item button b { font-size: 1.35rem; color: #4fe3ea; transition: .25s; }
.faq-item.open button b { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer > p { overflow: hidden; margin: 0; color: #8fa5b8; line-height: 1.68; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding: 0 0 22px; }

.final-cta { padding-top: 40px; }
.cta-card { min-height: 360px; padding: 52px; border-radius: 30px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: center; position: relative; overflow: hidden; border: 1px solid rgba(68, 218, 255, .18); background: linear-gradient(125deg, rgba(11, 56, 87, .9), rgba(5, 26, 46, .92) 58%, rgba(7, 74, 80, .72)); box-shadow: var(--shadow); }
.cta-card::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(to right, transparent, #000); pointer-events: none; }
.cta-light { position: absolute; width: 420px; height: 420px; right: -120px; top: -160px; border-radius: 50%; background: rgba(30, 234, 223, .17); filter: blur(40px); }
.cta-copy, .cta-actions { position: relative; z-index: 2; }
.cta-copy h2 { font-size: clamp(2.5rem, 4vw, 4rem); line-height: .98; letter-spacing: -.055em; margin: 14px 0 20px; }
.cta-copy p { color: #9bb2c6; max-width: 650px; }
.cta-actions { display: grid; gap: 10px; }

.site-footer { padding: 48px 0 26px; border-top: 1px solid rgba(255,255,255,.07); background: #020b13; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .5fr; gap: 44px; }
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img { width: 60px; height: 60px; object-fit: cover; border-radius: 15px; }
.footer-brand strong { font-size: 1.08rem; }
.footer-brand p { color: #748ba0; font-size: .78rem; margin: 5px 0 0; max-width: 390px; }
.footer-links, .footer-contact { display: grid; gap: 9px; align-content: start; }
.footer-links a, .footer-contact a { color: #91a6b9; font-size: .82rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 28px; margin-top: 32px; border-top: 1px solid rgba(255,255,255,.06); color: #5d7488; font-size: .68rem; }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 28; display: flex; align-items: center; gap: 9px; padding: 12px 15px; border-radius: 999px; color: #001b13; background: #39e79a; box-shadow: 0 14px 35px rgba(20, 190, 119, .26); font-weight: 850; font-size: .83rem; transition: .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.02); }
.floating-whatsapp svg { width: 21px; height: 21px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-fluid), transform .7s var(--ease-fluid); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes rotateSelf { to { transform: rotate(360deg); } }
@keyframes breathe { 0%,100% { opacity: .4; transform: translate(-50%, -50%) scale(.98); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.03); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

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

@media (max-width: 1020px) {
  .primary-nav { gap: 18px; }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 140px; }
  .hero-copy { text-align: center; }
  .hero-lead, .hero h1 { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .hero-visual { max-width: 680px; width: 100%; margin: 10px auto 0; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-card:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.08); }
  .stat-card:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); }
  .two-col, .software-grid, .faq-grid { grid-template-columns: 1fr; gap: 44px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .workflow-board { grid-template-columns: 1fr 1fr; }
  .flow-arrow { display: none; }
  .software-visual { max-width: 720px; margin: 0 auto; width: 100%; }
  .sticky-copy { position: static; }
  .kpi-shell { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-wrap { height: 72px; }
  .brand img { width: 42px; height: 42px; }
  .brand-copy small { display: none; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed; inset: 72px 14px auto; display: grid; gap: 0; padding: 14px; border-radius: 18px;
    background: rgba(5, 22, 38, .97); border: 1px solid rgba(255,255,255,.08); box-shadow: 0 24px 60px rgba(0,0,0,.36);
    opacity: 0; pointer-events: none; transform: translateY(-12px) scale(.985); transform-origin: top; transition: opacity .28s var(--ease-fluid), transform .28s var(--ease-fluid);
  }
  .primary-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .primary-nav a { padding: 13px 12px; border-bottom: 1px solid rgba(255,255,255,.05); }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 118px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 5rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: clamp(420px, 68vw, 500px); margin: 4px auto -12px; transition: min-height .35s var(--ease-fluid); }
  .orbit-two { width: min(500px, 120vw); height: auto; aspect-ratio: 1; }
  .orbit-one { width: min(390px, 92vw); height: auto; aspect-ratio: 1; }
  .system-core { width: clamp(142px, 24vw, 170px); height: clamp(142px, 24vw, 170px); }
  .system-core img { width: clamp(76px, 13vw, 92px); height: clamp(76px, 13vw, 92px); }
  .floating-node { min-width: clamp(132px, 23vw, 154px); }
  .node-whatsapp { left: 0; }.node-ai { right: 0; }.node-crm { left: 0; }.node-calendar { right: 0; }
  .integration-strip { margin-top: 35px; gap: 11px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-card + .stat-card { border-left: 0; border-top: 1px solid rgba(255,255,255,.08); }
  .feature-grid { grid-template-columns: 1fr; }
  .workflow-board { grid-template-columns: 1fr; }
  .workflow-column { min-height: auto; }
  .software-list { grid-template-columns: 1fr; }
  .industry-panel { grid-template-columns: 1fr; padding: 26px; }
  .panel-benefit { padding-left: 0; padding-top: 20px; border-left: 0; border-top: 1px solid rgba(255,255,255,.08); }
  .kpi-shell { padding: 30px 24px; }
  .cta-card { padding: 34px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { width: 50px; height: 50px; justify-content: center; padding: 0; }
}

@media (max-width: 520px) {
  .hero { padding-top: 108px; }
  .eyebrow { max-width: 100%; justify-content: center; padding: 8px 10px; font-size: .58rem; letter-spacing: .09em; line-height: 1.4; }
  .hero h1 { font-size: clamp(2.35rem, 10.8vw, 3.1rem); letter-spacing: -.055em; }
  .hero-actions { width: 100%; justify-content: stretch; }
  .hero-actions .btn { min-width: 0; padding-inline: 14px; font-size: .88rem; overflow-wrap: anywhere; }
  .hero-note { align-items: flex-start; }
  .hero-note .check { flex: 0 0 23px; }
  .hero-visual { min-height: clamp(390px, 118vw, 450px); margin-top: -8px; }
  .floating-node { min-width: 122px; gap: 7px; padding: 8px 10px 8px 8px; }
  .floating-node strong { font-size: .74rem; }
  .floating-node small { font-size: .56rem; }
  .node-icon { width: 32px; height: 32px; border-radius: 9px; }
  .node-whatsapp { top: 8%; }.node-ai { top: 14%; }.node-crm { bottom: 22%; }.node-calendar { bottom: 13%; }
  .stat-number { font-size: 3rem; }
  .industry-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; scrollbar-width: none; }
  .industry-tabs::-webkit-scrollbar { display: none; }
  .industry-tab { white-space: nowrap; }
}
