:root {
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.72);
  --text: #e5f4ff;
  --muted: #9fb4c7;
  --cyan: #00e5ff;
  --blue: #2563eb;
  --purple: #7c3aed;
  --border: rgba(148, 163, 184, 0.18);
  --shadow: 0 0 60px rgba(0, 229, 255, 0.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.assistant-mobile-open {
  overflow: hidden;
}
body.day-theme {
  --bg: #f6fbff;
  --panel: rgba(255, 255, 255, 0.78);
  --text: #102033;
  --muted: #51657a;
  --cyan: #0284c7;
  --blue: #1d4ed8;
  --purple: #7c3aed;
  --border: rgba(37, 99, 235, 0.14);
  --shadow: 0 18px 55px rgba(37, 99, 235, 0.12);
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 221, 120, .48), transparent 22%),
    radial-gradient(circle at 88% 2%, rgba(125, 211, 252, .42), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eef8ff 46%, #f8fbff 100%);
}
body.day-theme::before {
  content: "";
  position: fixed;
  top: 92px;
  left: 6%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 95, .78), rgba(255, 220, 95, .22) 46%, transparent 70%);
  filter: blur(2px);
  pointer-events: none;
  z-index: -2;
  animation: sunBreath 5.5s ease-in-out infinite;
}
a { color: inherit; text-decoration: none; }

.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.14), transparent 35%), #020617;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .55s ease, visibility .55s ease;
}
.page-loader.hide { opacity: 0; visibility: hidden; }
.loader-space { position: relative; width: min(380px, 78vw); height: min(380px, 78vw); }
.globe-loader {
  position: absolute; inset: 50%; transform: translate(-50%, -50%);
  width: 190px; height: 190px; border-radius: 50%;
  background: radial-gradient(circle at 28% 25%, rgba(255,255,255,.24), rgba(0, 46, 90, .95) 65%, rgba(1, 12, 28, .98));
  border: 2px solid rgba(255,255,255,.45);
  box-shadow: 0 0 90px rgba(0, 229, 255, 0.32), inset -28px -22px 55px rgba(0,0,0,.48);
  display: flex; align-items: center; justify-content: center;
  animation: earthFloat 3s ease-in-out infinite alternate;
}
.globe-loader img { width: 96px; height: 96px; object-fit: contain; z-index: 3; filter: drop-shadow(0 0 18px rgba(0, 229, 255, .75)); }
.globe-lines, .globe-shine { position: absolute; inset: 0; border-radius: 50%; }
.globe-lines {
  background:
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(255,255,255,.08) 14px 15px),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(255,255,255,.05) 18px 19px);
  mix-blend-mode: screen;
  opacity: .45;
  animation: earthSpin 10s linear infinite;
}
.globe-shine {
  background: radial-gradient(circle at 30% 22%, rgba(255,255,255,.35), transparent 34%);
}
.fiber {
  position: absolute; inset: 50%; height: 2px; width: 360px; margin-left: -180px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, .9), transparent);
  filter: drop-shadow(0 0 10px var(--cyan)); opacity: .5;
}
.fiber-1 { transform: rotate(20deg); animation: fiberPulse 2.5s infinite; }
.fiber-2 { transform: rotate(140deg); animation: fiberPulse 2.9s infinite; }
.fiber-3 { transform: rotate(260deg); animation: fiberPulse 2.2s infinite; }
.energy-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 18px #fff, 0 0 36px var(--cyan);
}
.dot-1 { top: 30px; left: 120px; animation: driftDot 2.8s infinite; }
.dot-2 { right: 86px; bottom: 78px; animation: driftDot 3.4s infinite; }
.dot-3 { left: 74px; bottom: 110px; animation: driftDot 3s infinite; }
.loader-title { margin-top: 28px; font-family: "Orbitron", sans-serif; font-size: clamp(22px, 5vw, 30px); letter-spacing: 4px; text-align: center; }
.loader-subtitle { margin-top: 12px; color: var(--muted); text-align: center; padding: 0 18px; line-height: 1.5; }
.loader-progress {
  width: 280px; height: 4px; margin-top: 22px; overflow: hidden; border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.loader-progress span {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--cyan), #fff, var(--cyan), transparent);
  animation: loadingBar 2.4s linear infinite;
}

@keyframes earthFloat { from { transform: translate(-50%, -50%) translateY(-8px) rotateY(-10deg); } to { transform: translate(-50%, -50%) translateY(10px) rotateY(10deg); } }
@keyframes earthSpin { to { transform: rotate(360deg); } }
@keyframes fiberPulse { 50% { opacity: .95; filter: drop-shadow(0 0 18px var(--cyan)); } }
@keyframes driftDot { 50% { transform: scale(1.7); opacity: .45; } }
@keyframes loadingBar { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
@keyframes sunBreath { 50% { transform: translateY(8px) scale(1.04); opacity: .86; } }

.bg-grid {
  position: fixed; inset: 0; z-index: -5;
  background-image: linear-gradient(rgba(0,229,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,229,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}
.bg-glow { position: fixed; z-index: -4; width: 420px; height: 420px; border-radius: 50%; filter: blur(80px); opacity: .45; }
.glow-one { left: -100px; top: 100px; background: var(--blue); }
.glow-two { right: -100px; bottom: 100px; background: var(--purple); }
.particles span {
  position: fixed; z-index: -3; width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); opacity: .5;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  from { transform: translateY(100vh) scale(.5); opacity: 0; }
  30% { opacity: .7; }
  to { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}

.topbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 50; padding: 18px 6%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(2, 6, 23, .68); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border);
}
.topbar.scrolled {
  background: rgba(2, 6, 23, .9);
  box-shadow: 0 14px 34px rgba(0,0,0,.26);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand strong { display: block; font-family: "Orbitron", sans-serif; font-size: 16px; }
.brand span { display: block; color: var(--muted); font-size: 12px; }
.desktop-nav { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.desktop-nav a { transition: .25s; }
.desktop-nav a:hover { color: var(--cyan); text-shadow: 0 0 18px rgba(0,229,255,.8); }
.top-button, .btn {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 13px 22px; font-weight: 800; transition: .25s ease;
}
.top-button, .btn.primary { background: linear-gradient(135deg, var(--cyan), var(--blue)); color: #00111c; box-shadow: 0 0 30px rgba(0,229,255,.28); }
.btn.secondary { border: 1px solid rgba(0,229,255,.35); color: var(--cyan); background: rgba(15,23,42,.6); }
.btn:hover, .top-button:hover { transform: translateY(-3px); }
.mobile-menu-btn {
  display: none; width: 42px; height: 42px; border: 1px solid var(--border); background: rgba(15,23,42,.8); border-radius: 12px; padding: 10px;
}
.mobile-menu-btn span { display: block; height: 2px; background: var(--cyan); margin: 5px 0; }
.mobile-menu {
  position: fixed; top: 84px; left: 5%; right: 5%; z-index: 49; display: none; flex-direction: column;
  padding: 18px; border: 1px solid var(--border); border-radius: 20px; background: rgba(2,6,23,.96); box-shadow: var(--shadow);
}
.mobile-menu.show { display: flex; }
.mobile-menu a { padding: 14px; border-bottom: 1px solid var(--border); }

body.day-theme .page-loader {
  background: radial-gradient(circle at 42% 32%, rgba(255, 221, 120, .36), transparent 32%), #f8fcff;
}
body.day-theme .loader-title {
  color: #0f2a44;
}
body.day-theme .bg-grid {
  background-image:
    linear-gradient(rgba(37,99,235,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.055) 1px, transparent 1px);
  opacity: .75;
}
body.day-theme .glow-one {
  background: #7dd3fc;
  opacity: .34;
}
body.day-theme .glow-two {
  background: #fde68a;
  opacity: .42;
}
body.day-theme .particles span {
  background: #38bdf8;
  opacity: .26;
}
body.day-theme .topbar {
  background: rgba(255,255,255,.76);
  border-bottom-color: rgba(37,99,235,.14);
  box-shadow: 0 10px 34px rgba(15, 65, 120, .08);
}
body.day-theme .topbar.scrolled {
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 34px rgba(15,65,120,.12);
}
body.day-theme .brand strong,
body.day-theme footer strong {
  color: #0f2a44;
}
body.day-theme .desktop-nav,
body.day-theme .brand span,
body.day-theme footer {
  color: #5d7188;
}
body.day-theme .mobile-menu-btn {
  background: rgba(255,255,255,.88);
}
body.day-theme .mobile-menu {
  background: rgba(255,255,255,.96);
}
body.day-theme .btn.primary,
body.day-theme .top-button {
  background: linear-gradient(135deg, #dff6ff, #bfdbfe);
  color: #0f2a44;
  border: 1px solid rgba(2,132,199,.18);
  box-shadow: 0 12px 28px rgba(37,99,235,.12);
}
body.day-theme .btn.secondary {
  background: rgba(255,255,255,.72);
  color: #075985;
  border-color: rgba(2,132,199,.2);
}

.hero {
  min-height: 100svh; padding: 132px 6% 72px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(440px, 620px); align-items: center; gap: clamp(28px, 5vw, 58px);
}
.badge {
  display: inline-flex; padding: 10px 16px; border: 1px solid rgba(0,229,255,.35); border-radius: 999px; color: var(--cyan); background: rgba(0,229,255,.08); margin-bottom: 26px; font-weight: 700;
}
.hero h1 { font-family: "Orbitron", sans-serif; font-size: clamp(34px, 5vw, 70px); line-height: 1.06; letter-spacing: 0; overflow-wrap: anywhere; }
.hero h1 span { color: var(--cyan); text-shadow: 0 0 28px rgba(0,229,255,.65); }
.hero-subtitle { color: var(--muted); max-width: 720px; font-size: clamp(16px, 1.45vw, 19px); line-height: 1.72; margin-top: 24px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; max-width: 650px; }
.hero-stats div { padding: 18px; border: 1px solid var(--border); border-radius: 22px; background: rgba(15,23,42,.55); box-shadow: var(--shadow); }
.hero-stats strong { display: block; font-family: "Orbitron", sans-serif; color: var(--cyan); font-size: 22px; }
.hero-stats span { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; }

.hero-orbit { position: relative; width: min(620px, 100%); aspect-ratio: 1; min-height: 440px; margin: auto; animation: floatOrbit 5s ease-in-out infinite alternate; }
@keyframes floatOrbit { from { transform: translateY(-12px); } to { transform: translateY(18px); } }
.center-card {
  position: absolute; inset: 50%; width: 250px; height: 250px; transform: translate(-50%, -50%);
  border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.earth-globe {
  position: relative; width: 194px; height: 194px; border-radius: 50%;
  background: radial-gradient(circle at 30% 24%, rgba(255,255,255,.26), rgba(0, 52, 102, .96) 64%, rgba(1, 18, 40, 1));
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: 0 0 90px rgba(0,229,255,.22), inset -32px -24px 50px rgba(0,0,0,.44);
  display: flex; align-items: center; justify-content: center;
  animation: globePulse 3.8s ease-in-out infinite alternate;
}
.earth-globe img { width: 92px; height: 92px; object-fit: contain; z-index: 5; filter: drop-shadow(0 0 16px rgba(0,229,255,.8)); }
.globe-arc { position: absolute; inset: 10px; border-radius: 50%; border: 1px solid rgba(255,255,255,.42); opacity: .65; }
.arc-a { transform: rotateX(72deg); }
.arc-b { transform: rotateY(68deg); }
.arc-c { transform: rotate(35deg) scale(.9); }
.globe-spark { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 16px #fff, 0 0 32px var(--cyan); z-index: 6; }
.spark-a { top: 26px; right: 42px; animation: sparkPulse 1.5s infinite; }
.spark-b { bottom: 38px; left: 34px; animation: sparkPulse 1.9s infinite; }
.center-card strong { font-family: "Orbitron", sans-serif; font-size: 31px; margin-top: 8px; }
.center-card span { color: var(--muted); font-size: 12px; }
@keyframes globePulse { from { transform: translateY(-8px) rotateY(-16deg); } to { transform: translateY(8px) rotateY(16deg); } }
@keyframes sparkPulse { 50% { transform: scale(1.8); opacity: .5; } }

.orbit-ring {
  position: absolute; inset: 50%; border-radius: 50%; border: 1px dashed rgba(0,229,255,.28); transform: translate(-50%, -50%);
}
.ring-one { width: 370px; height: 370px; animation: spin 22s linear infinite; }
.ring-two { width: 530px; height: 530px; animation: spinReverse 32s linear infinite; }
.ring-three { width: 610px; height: 610px; animation: spin 44s linear infinite; border-color: rgba(255,255,255,.12); }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spinReverse { to { transform: translate(-50%, -50%) rotate(-360deg); } }

.orbit-connection {
  position: absolute; inset: 50%; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,229,255,.65), transparent);
  transform-origin: left; opacity: .42; filter: drop-shadow(0 0 8px var(--cyan)); animation: connectionGlow 2.4s ease-in-out infinite;
}
.connection-a { width: 470px; transform: rotate(18deg); }
.connection-b { width: 430px; transform: rotate(110deg); }
.connection-c { width: 400px; transform: rotate(208deg); }
.connection-d { width: 450px; transform: rotate(300deg); }
@keyframes connectionGlow { 50% { opacity: .88; filter: drop-shadow(0 0 18px var(--cyan)); } }

.orbit-item {
  position: absolute; width: 180px; padding: 16px; border-radius: 22px; background: rgba(15,23,42,.82);
  border: 1px solid rgba(0,229,255,.28); box-shadow: var(--shadow); backdrop-filter: blur(14px); transition: .3s;
}
.orbit-item:hover { transform: scale(1.08); border-color: var(--cyan); }
.orbit-item b { display: block; color: var(--cyan); font-family: "Orbitron", sans-serif; }
.orbit-item small { color: var(--muted); }
.item-1 { top: 18px; left: 220px; }
.item-2 { top: 170px; right: -12px; }
.item-3 { bottom: 58px; right: 72px; }
.item-4 { bottom: 58px; left: 72px; }
.item-5 { top: 170px; left: -12px; }

.section { padding: clamp(58px, 8vw, 90px) 6%; }
.section-title { max-width: 900px; margin-bottom: 42px; }
.section-title span { color: var(--cyan); font-weight: 900; text-transform: uppercase; letter-spacing: 2px; }
.section-title h2 { margin-top: 14px; font-family: "Orbitron", sans-serif; font-size: clamp(30px, 4vw, 50px); line-height: 1.1; }
.section-title p { margin-top: 16px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.cards { display: grid; gap: 24px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.solution-card, .feature, .mini-card, .success-card, .timeline-item, .contact-box {
  border: 1px solid var(--border); background: linear-gradient(180deg, rgba(15,23,42,.78), rgba(15,23,42,.42));
  border-radius: 18px; padding: clamp(20px, 3vw, 30px); box-shadow: var(--shadow); position: relative; overflow: hidden;
  min-width: 0;
}
.solution-card *, .feature *, .mini-card *, .success-card *, .timeline-item * { overflow-wrap: anywhere; }
.solution-card::before, .feature::before, .success-card::before, .timeline-item::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,229,255,.12), transparent 45%); opacity: 0; transition: .3s;
}
.solution-card:hover::before, .feature:hover::before, .success-card:hover::before, .timeline-item:hover::before { opacity: 1; }
.product-logo { width: 155px; height: 92px; border-radius: 22px; background: rgba(255,255,255,.95); display: grid; place-items: center; margin-bottom: 22px; }
.product-logo img { max-width: 125px; max-height: 65px; object-fit: contain; }
.solution-card h3, .feature h3, .mini-card h3, .success-card h3, .timeline-item h3 { font-family: "Orbitron", sans-serif; font-size: 24px; margin-bottom: 14px; }
.solution-card p, .feature p, .mini-card p, .success-card p, .timeline-item p { color: var(--muted); line-height: 1.7; }
.solution-card ul { margin-top: 18px; padding-left: 18px; line-height: 1.9; }
.solution-card-cta {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  cursor: pointer;
  isolation: isolate;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.solution-card-cta:hover {
  transform: translateY(-6px);
  border-color: rgba(0,229,255,.56);
  box-shadow: 0 24px 70px rgba(0,229,255,.2), 0 0 0 1px rgba(0,229,255,.18);
}
.solution-card-cta:focus-visible {
  outline: 3px solid rgba(0,229,255,.42);
  outline-offset: 4px;
}
.trial-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(37,211,102,.14);
  border: 1px solid rgba(37,211,102,.34);
  color: #8ff5b8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.solution-cta-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #00111c;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0,229,255,.2);
}
body.day-theme .solution-card-cta:hover {
  border-color: rgba(2,132,199,.32);
  box-shadow: 0 24px 60px rgba(37,99,235,.14), 0 0 0 1px rgba(2,132,199,.12);
}
body.day-theme .trial-badge {
  background: rgba(236,253,245,.94);
  border-color: rgba(16,185,129,.22);
  color: #047857;
}
body.day-theme .solution-cta-button {
  background: linear-gradient(135deg, #e0f2fe, #bfdbfe);
  color: #0f2a44;
  border: 1px solid rgba(2,132,199,.18);
  box-shadow: 0 12px 28px rgba(37,99,235,.12);
}
.bot-section, .app-section { background: linear-gradient(180deg, transparent, rgba(0,229,255,.04), transparent); }
.feature-grid, .success-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.icon {
  width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: rgba(0,229,255,.12); color: var(--cyan); font-family: "Orbitron", sans-serif; font-weight: 900; margin-bottom: 20px;
}
.timeline { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.timeline-item strong { display: inline-flex; color: var(--cyan); font-family: "Orbitron", sans-serif; margin-bottom: 18px; font-size: 28px; }
.tech-cloud { display: flex; flex-wrap: wrap; gap: 14px; }
.tech-cloud span {
  padding: 14px 20px; border-radius: 999px; background: rgba(15,23,42,.8); border: 1px solid rgba(0,229,255,.24); font-weight: 800; box-shadow: 0 0 25px rgba(0,229,255,.08); transition: .25s;
}
.tech-cloud span:hover { transform: translateY(-4px); color: var(--cyan); border-color: var(--cyan); }
.contact-section { padding: 90px 6% 110px; }
.contact-box {
  max-width: 1050px; margin: auto; text-align: center; background: radial-gradient(circle at top, rgba(0,229,255,.16), transparent 50%), rgba(15,23,42,.86);
}
.contact-box h2 { font-family: "Orbitron", sans-serif; font-size: clamp(30px, 4vw, 52px); }
.contact-box p { max-width: 760px; margin: 18px auto 0; color: var(--muted); line-height: 1.8; font-size: 18px; }
.contact-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
footer {
  padding: 28px 6%; border-top: 1px solid var(--border); background: rgba(2,6,23,.75);
  display: flex; justify-content: space-between; gap: 18px; color: var(--muted);
}
footer strong { color: var(--text); }

body.day-theme .badge {
  background: rgba(255,255,255,.76);
  color: #0369a1;
  border-color: rgba(2,132,199,.22);
  box-shadow: 0 10px 26px rgba(14, 116, 144, .08);
}
body.day-theme .hero h1 span,
body.day-theme .section-title span,
body.day-theme .hero-stats strong,
body.day-theme .timeline-item strong,
body.day-theme .orbit-item b {
  color: #0284c7;
  text-shadow: 0 0 20px rgba(14,165,233,.18);
}
body.day-theme .hero-stats div,
body.day-theme .orbit-item,
body.day-theme .solution-card,
body.day-theme .feature,
body.day-theme .mini-card,
body.day-theme .success-card,
body.day-theme .timeline-item,
body.day-theme .contact-box {
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(240,249,255,.72));
  border-color: rgba(37,99,235,.14);
  box-shadow: 0 18px 48px rgba(37, 99, 235, .10);
}
body.day-theme .solution-card::before,
body.day-theme .feature::before,
body.day-theme .success-card::before,
body.day-theme .timeline-item::before {
  background: linear-gradient(135deg, rgba(125,211,252,.2), transparent 48%);
}
body.day-theme .product-logo {
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(37,99,235,.10);
}
body.day-theme .bot-section,
body.day-theme .app-section {
  background: linear-gradient(180deg, transparent, rgba(255,221,120,.18), rgba(125,211,252,.10), transparent);
}
body.day-theme .icon,
body.day-theme .tech-cloud span {
  background: rgba(255,255,255,.76);
  border-color: rgba(2,132,199,.18);
  color: #0369a1;
}
body.day-theme footer {
  background: rgba(255,255,255,.74);
  border-top-color: rgba(37,99,235,.12);
}

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .8s ease, transform .8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .desktop-nav, .top-button { display: none; }
  .mobile-menu-btn { display: block; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle, .hero-stats { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .feature-grid, .success-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline, .cards.three { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .topbar { padding: 14px 5%; }
  .brand div span { display: none; }
  .hero { padding-top: 120px; }
  .hero-stats, .cards.two, .feature-grid, .success-grid { grid-template-columns: 1fr; }
  .hero-orbit { width: 350px; height: 430px; margin-top: 20px; }
  .center-card { width: 176px; height: 176px; }
  .earth-globe { width: 132px; height: 132px; }
  .earth-globe img { width: 64px; height: 64px; }
  .center-card strong { font-size: 24px; }
  .ring-one { width: 240px; height: 240px; }
  .ring-two { width: 330px; height: 330px; }
  .ring-three { width: 390px; height: 390px; }
  .orbit-item { width: 128px; padding: 10px; border-radius: 16px; font-size: 12px; }
  .orbit-item small { font-size: 10px; }
  .item-1 { top: 0; left: 112px; }
  .item-2 { top: 96px; right: -6px; }
  .item-3 { bottom: 62px; right: 12px; }
  .item-4 { bottom: 62px; left: 12px; }
  .item-5 { top: 96px; left: -6px; }
  .loader-space { width: 310px; height: 310px; }
  .globe-loader { width: 156px; height: 156px; }
  .fiber { width: 290px; margin-left: -145px; }
  .loader-title { font-size: 24px; letter-spacing: 4px; }
  .loader-subtitle { text-align: center; padding: 0 20px; }
  .loader-progress { width: 235px; }
  footer { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}


/* Botão flutuante de suporte WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 14px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #00e5ff);
  color: #00110a;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(37, 211, 102, .38), 0 0 50px rgba(0, 229, 255, .18);
  border: 1px solid rgba(255,255,255,.28);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 38px rgba(37, 211, 102, .55), 0 0 70px rgba(0, 229, 255, .28);
}
.whatsapp-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.28);
  font-size: 24px;
  line-height: 1;
}
.whatsapp-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, .7);
  animation: supportPulse 1.8s ease-out infinite;
}
@keyframes supportPulse {
  from { transform: scale(.92); opacity: .9; }
  to { transform: scale(1.28); opacity: 0; }
}
.site-footer {
  padding: 46px 6% 26px;
  border-top: 1px solid var(--border);
  background: radial-gradient(circle at top left, rgba(0,229,255,.09), transparent 35%), rgba(2, 6, 23, .92);
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr 1fr;
  gap: 26px;
  align-items: start;
}
.footer-brand strong {
  display: block;
  color: var(--text);
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}
.footer-brand span, .footer-info p { line-height: 1.7; }
.footer-info h4 {
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.footer-info b { color: var(--text); }
.map-link {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.map-link:hover {
  text-shadow: 0 0 16px rgba(0,229,255,.65);
}
.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .whatsapp-float { right: 16px; bottom: 16px; padding: 12px; }
  .whatsapp-text { display: none; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-bottom { flex-direction: column; text-align: left; }
}

/* Assistente virtual com mascote */
.assistant-widget {
  position: fixed;
  right: 20px;
  bottom: 14px;
  z-index: 90;
  width: 360px;
  pointer-events: none;
}
.assistant-launcher {
  position: relative;
  display: block;
  width: 156px;
  height: 186px;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  transform-origin: 50% 95%;
  animation: mascotFlyIn 2.8s cubic-bezier(.16,.9,.28,1.18) .55s both, mascotIdle 3.8s ease-in-out 3.6s infinite;
}
.assistant-launcher::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 32px;
  width: 86px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,.72), transparent);
  filter: blur(1px);
  transform: rotate(-18deg);
  opacity: 0;
  animation: flightTrail 2.15s ease-out .55s both;
}
.assistant-launcher img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.42)) drop-shadow(0 0 22px rgba(0,229,255,.35));
}
.assistant-glow {
  position: absolute;
  left: 28px;
  right: 22px;
  bottom: 5px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,.42), transparent 70%);
  filter: blur(2px);
  opacity: .8;
  animation: landingShadow 3.8s ease-in-out infinite;
}
.assistant-bubble {
  position: absolute;
  right: 124px;
  bottom: 144px;
  max-width: 210px;
  padding: 14px 17px 14px 15px;
  border: 1px solid rgba(0,229,255,.36);
  border-radius: 18px 18px 6px 18px;
  background: rgba(15,23,42,.96);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
  pointer-events: auto;
  opacity: 0;
  transform: translate(14px, 10px) scale(.42);
  transform-origin: right bottom;
  animation: bubbleArrive .58s cubic-bezier(.18,.89,.32,1.28) 3.08s forwards, bubblePulse 2.4s ease-in-out 4s infinite;
}
.assistant-bubble::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 16px;
  width: 13px;
  height: 13px;
  background: rgba(15,23,42,.96);
  border-right: 1px solid rgba(0,229,255,.36);
  border-bottom: 1px solid rgba(0,229,255,.36);
  transform: rotate(-45deg);
}
.assistant-bubble-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(0,229,255,.9);
  vertical-align: 1px;
}
.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 198px;
  width: min(330px, calc(100vw - 28px));
  max-height: min(560px, calc(100vh - 120px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0,229,255,.28);
  border-radius: 24px;
  background: rgba(2, 6, 23, .96);
  box-shadow: 0 24px 70px rgba(0,0,0,.46), 0 0 45px rgba(0,229,255,.16);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(.96);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.assistant-widget.open .assistant-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.assistant-widget.open .assistant-bubble { display: none; }
.assistant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(0,229,255,.12), rgba(37,99,235,.08));
}
.assistant-header strong {
  display: block;
  font-family: "Orbitron", sans-serif;
  color: var(--cyan);
}
.assistant-header span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}
.assistant-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
}
.assistant-messages {
  min-height: 190px;
  max-height: 280px;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.assistant-message {
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 16px;
  line-height: 1.45;
  font-size: 14px;
}
.assistant-message.bot {
  align-self: flex-start;
  background: rgba(15,23,42,.9);
  border: 1px solid rgba(0,229,255,.22);
  color: var(--text);
}
.assistant-message.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #00111c;
  font-weight: 800;
}
.assistant-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 12px;
}
.assistant-quick-actions button,
.assistant-form button,
.assistant-whatsapp {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}
.assistant-quick-actions button {
  padding: 9px 11px;
  background: rgba(0,229,255,.09);
  border: 1px solid rgba(0,229,255,.24);
  color: var(--cyan);
}
.assistant-form {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
}
.assistant-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(15,23,42,.86);
  color: var(--text);
  padding: 12px 14px;
  outline: none;
}
.assistant-form input:focus { border-color: rgba(0,229,255,.58); }
.assistant-form button {
  padding: 0 14px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #00111c;
}
.assistant-whatsapp {
  display: block;
  margin: 0 14px 14px;
  padding: 13px 14px;
  text-align: center;
  background: linear-gradient(135deg, #25d366, #00e5ff);
  color: #00110a;
  box-shadow: 0 0 26px rgba(37,211,102,.24);
}
@keyframes mascotFlyIn {
  0% { transform: translate(-78vw, -64vh) rotate(-32deg) scale(.48); opacity: 0; }
  32% { opacity: 1; }
  58% { transform: translate(-58px, -42px) rotate(10deg) scale(1.08); opacity: 1; }
  78% { transform: translate(10px, 7px) rotate(-4deg) scale(.98); }
  100% { transform: translate(0, 0) rotate(0) scale(1); opacity: 1; }
}
@keyframes flightTrail {
  0%, 72% { opacity: .95; transform: translate(-34px, -18px) rotate(-18deg) scaleX(1.6); }
  100% { opacity: 0; transform: translate(0, 0) rotate(-18deg) scaleX(.45); }
}
@keyframes mascotIdle {
  50% { transform: translateY(-8px) rotate(1.5deg); }
}
@keyframes landingShadow {
  50% { transform: scale(.86); opacity: .55; }
}
@keyframes bubbleArrive {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes bubblePulse {
  50% { box-shadow: 0 0 34px rgba(0,229,255,.3); }
}
@media (max-width: 760px) {
  .assistant-widget { right: 10px; bottom: 8px; width: 300px; }
  .assistant-launcher { width: 112px; height: 138px; }
  .assistant-bubble { right: 92px; bottom: 112px; max-width: 168px; font-size: 13px; }
  .assistant-panel { bottom: 150px; }
}

/* Assistente final: robo flutuante com nuvem de conversa */
.assistant-widget {
  right: 28px;
  bottom: 24px;
  width: min(520px, calc(100vw - 28px));
  opacity: 0;
  animation: assistantWidgetReady .4s ease 2300ms forwards;
}
.assistant-launcher {
  width: 174px;
  height: 210px;
  animation: mascotFlyIn 2.9s cubic-bezier(.16,.9,.28,1.18) 2400ms both, mascotFloatReady 3.6s ease-in-out 5400ms infinite;
}
.assistant-launcher img {
  opacity: .94;
  object-position: center bottom;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.48)) drop-shadow(0 0 28px rgba(0,229,255,.42));
}
.assistant-panel {
  right: 140px;
  bottom: 112px;
  width: min(360px, calc(100vw - 42px));
  min-width: 340px;
  min-height: 330px;
  max-height: min(520px, calc(100vh - 120px));
  overflow: hidden;
  resize: both;
  border: 1px solid rgba(0,229,255,.38);
  border-radius: 30px 30px 10px 30px;
  background: radial-gradient(circle at top right, rgba(0,229,255,.16), transparent 48%), rgba(10,20,38,.66);
  box-shadow: 0 24px 70px rgba(0,0,0,.48), 0 0 48px rgba(0,229,255,.2);
  transform: translate(28px, 12px) scale(.84);
  transform-origin: right bottom;
  animation: bubblePulse 2.4s ease-in-out 4s infinite;
}
.assistant-widget.expanded .assistant-panel {
  width: min(590px, calc(100vw - 48px));
  min-height: 470px;
  max-height: min(760px, calc(100vh - 96px));
}
.assistant-widget.large-chat .assistant-panel {
  width: min(680px, calc(100vw - 48px));
  min-height: 560px;
  max-height: min(820px, calc(100vh - 72px));
}
.assistant-widget.expanded .assistant-messages {
  min-height: 260px;
  max-height: min(520px, calc(100vh - 300px));
}
.assistant-widget.large-chat .assistant-messages {
  min-height: 340px;
  max-height: min(610px, calc(100vh - 280px));
}
.assistant-panel::after {
  content: "";
  position: absolute;
  right: -15px;
  bottom: 28px;
  width: 30px;
  height: 30px;
  background: rgba(10,20,38,.66);
  border-right: 1px solid rgba(0,229,255,.38);
  border-bottom: 1px solid rgba(0,229,255,.38);
  transform: rotate(-45deg);
  z-index: -1;
}
.assistant-widget.open .assistant-panel {
  transform: translate(0, 0) scale(1);
}
.assistant-header {
  padding: 16px 18px 10px;
  background: transparent;
}
.assistant-header strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 18px;
}
.assistant-messages {
  min-height: 78px;
  max-height: 180px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,229,255,.42) rgba(255,255,255,.06);
}
.assistant-messages::-webkit-scrollbar {
  width: 6px;
}
.assistant-messages::-webkit-scrollbar-track {
  background: rgba(255,255,255,.05);
  border-radius: 999px;
}
.assistant-messages::-webkit-scrollbar-thumb {
  background: rgba(0,229,255,.38);
  border-radius: 999px;
}
.assistant-message {
  font-size: 13px;
  max-width: min(92%, 290px);
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
  white-space: pre-wrap;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.assistant-message.bot {
  border-radius: 16px 16px 16px 6px;
}
.assistant-message.user {
  border-radius: 16px 16px 6px 16px;
}
.assistant-inline-link {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.assistant-inline-link:hover {
  color: #ffffff;
}
.assistant-message.thinking {
  color: var(--muted);
  font-style: italic;
  position: relative;
}
.assistant-message.thinking::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 4px;
  margin-left: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  animation: thinkingPulse 1s ease-in-out infinite;
}
.assistant-form {
  align-items: center;
  padding: 10px 14px 12px;
  min-width: 0;
}
.assistant-form input {
  min-width: 0;
}
.assistant-form .assistant-mic {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  background: rgba(0,229,255,.12);
  border: 1px solid rgba(0,229,255,.32);
  color: var(--cyan);
  font-size: 17px;
}
.assistant-form .assistant-mic.listening {
  background: linear-gradient(135deg, #25d366, #00e5ff);
  color: #00110a;
  box-shadow: 0 0 22px rgba(37,211,102,.42);
}
.assistant-form.is-busy {
  opacity: .86;
}
.assistant-form input:disabled,
.assistant-form button:disabled {
  cursor: wait;
  opacity: .68;
}
.assistant-whatsapp {
  padding: 11px 14px;
}
.day-theme .assistant-panel {
  background: radial-gradient(circle at top right, rgba(125,211,252,.24), transparent 48%), rgba(255,255,255,.82);
  border-color: rgba(2,132,199,.24);
  box-shadow: 0 24px 70px rgba(37,99,235,.16), 0 0 48px rgba(14,165,233,.14);
}
.day-theme .assistant-panel::after {
  background: rgba(255,255,255,.82);
  border-color: rgba(2,132,199,.24);
}
.day-theme .assistant-header strong {
  color: #102033;
}
.day-theme .assistant-message.bot {
  background: rgba(255,255,255,.92);
  color: #102033;
  border-color: rgba(2,132,199,.18);
}
.day-theme .assistant-message.user {
  background: linear-gradient(135deg, #dff6ff, #bfdbfe);
  color: #0f2a44;
}
.day-theme .assistant-form {
  background: rgba(255,255,255,.56);
}
.day-theme .assistant-form input {
  background: rgba(255,255,255,.92);
  color: #102033;
  border-color: rgba(2,132,199,.22);
}
.day-theme .assistant-form input::placeholder {
  color: #6b7e92;
}
.day-theme .assistant-launcher {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.day-theme .assistant-glow {
  background: radial-gradient(circle, rgba(251,191,36,.46), transparent 70%);
}
.day-theme .assistant-whatsapp {
  background: linear-gradient(135deg, #d7f8e7, #dff6ff);
  color: #123524;
  box-shadow: 0 12px 26px rgba(15,118,110,.12);
}
.assistant-resize-handle {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(0,229,255,.5);
  border-bottom: 2px solid rgba(0,229,255,.5);
  border-radius: 0 0 8px 0;
  opacity: .75;
  pointer-events: none;
}
.assistant-panel:hover .assistant-resize-handle {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(0,229,255,.65));
}
@keyframes mascotFloatReady {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1.4deg); }
}
@keyframes mascotTopWave {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  20% { transform: translateY(-2px) rotate(-5deg) scale(1.03); }
  40% { transform: translateY(1px) rotate(5deg) scale(1.02); }
  60% { transform: translateY(-2px) rotate(-4deg) scale(1.03); }
  80% { transform: translateY(0) rotate(2deg) scale(1); }
}
@keyframes mobileAssistantReady {
  from { opacity: 0; transform: translateY(-14px) scale(.72); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes assistantWidgetReady {
  to { opacity: 1; }
}
@keyframes bubbleArriveCloud {
  to { opacity: 1; transform: translate(0, 0) scale(1); }
}
@keyframes thinkingPulse {
  50% { opacity: .35; transform: translateX(4px); }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .assistant-widget {
    right: 18px;
    bottom: 18px;
    width: min(500px, calc(100vw - 24px));
  }
  .assistant-launcher {
    width: 158px;
    height: 196px;
  }
  .assistant-panel {
    right: 126px;
    bottom: 102px;
    width: 340px;
  }
  .assistant-widget.expanded .assistant-panel {
    width: min(560px, calc(100vw - 32px));
    min-height: 470px;
  }
}

@media (max-width: 760px) {
  main { scroll-margin-top: 76px; }
  #softwares { scroll-margin-top: 82px; }
  .assistant-widget {
    top: 8px;
    right: 68px;
    bottom: auto;
    width: 54px;
    z-index: 95;
    opacity: 0;
    animation: mobileAssistantReady .45s ease 1700ms forwards;
  }
  .assistant-launcher {
    width: 54px;
    height: 58px;
    margin-left: 0;
    border-radius: 16px;
    background: radial-gradient(circle at 50% 20%, rgba(0,229,255,.2), rgba(15,23,42,.72));
    border: 1px solid rgba(0,229,255,.32);
    box-shadow: 0 10px 28px rgba(0,0,0,.28), 0 0 18px rgba(0,229,255,.22);
    overflow: hidden;
    animation: mascotTopWave 2.8s ease-in-out 2200ms infinite;
  }
  .assistant-launcher::before {
    display: none;
  }
  .assistant-launcher img {
    width: 120%;
    height: 120%;
    left: -5%;
    top: 2px;
    opacity: .92;
    object-position: center bottom;
    filter: drop-shadow(0 8px 12px rgba(0,0,0,.35)) drop-shadow(0 0 10px rgba(0,229,255,.38));
  }
  .assistant-glow {
    left: 10px;
    right: 10px;
    bottom: 1px;
    height: 9px;
    opacity: .55;
  }
  .assistant-widget::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 7px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 0 10px rgba(37,211,102,.86);
  }
  .assistant-panel {
    position: fixed;
    left: 8px;
    right: 8px;
    top: 70px;
    bottom: 0;
    width: auto;
    max-width: calc(100vw - 16px);
    min-width: 0;
    height: calc(100svh - 70px);
    min-height: 0;
    max-height: none;
    resize: none;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    transform-origin: top right;
  }
  .assistant-widget.open .assistant-panel {
    transform: translate(0, 0) scale(1);
  }
  .assistant-widget.expanded .assistant-panel {
    left: 8px;
    right: 8px;
    top: 70px;
    bottom: 0;
    width: auto;
    max-width: calc(100vw - 16px);
    height: calc(100svh - 70px);
    min-height: 0;
    max-height: none;
  }
  .assistant-widget.large-chat .assistant-panel {
    left: 8px;
    right: 8px;
    top: 70px;
    bottom: 0;
    width: auto;
    max-width: calc(100vw - 16px);
    height: calc(100svh - 70px);
    min-height: 0;
    max-height: none;
  }
  .assistant-panel::after {
    display: none;
  }
  .assistant-header {
    padding: 16px 16px 10px;
  }
  .assistant-messages {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    padding: 14px 14px 18px;
  }
  .assistant-widget.expanded .assistant-messages {
    min-height: 0;
    max-height: none;
  }
  .assistant-widget.large-chat .assistant-messages {
    min-height: 0;
    max-height: none;
  }
  .assistant-message {
    max-width: 94%;
    font-size: 14px;
    line-height: 1.55;
  }
  .assistant-form {
    padding: 12px 14px 14px;
    border-top: 1px solid rgba(0,229,255,.14);
    background: rgba(2,6,23,.62);
  }
  .assistant-form input {
    min-height: 48px;
    font-size: 15px;
  }
  .assistant-form button[type="submit"] {
    min-height: 44px;
  }
  .assistant-whatsapp {
    margin: 0 14px 14px;
  }
  .assistant-quick-actions {
    display: none;
  }
}

/* Refinamento responsivo final */
@media (max-width: 1280px) {
  .desktop-nav { gap: 14px; font-size: 13px; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(380px, 520px); }
  .orbit-item { width: 164px; }
}

@media (max-width: 1080px) {
  .hero { min-height: auto; padding-top: 118px; }
  .hero-orbit { max-width: 560px; min-height: 500px; }
  .cards.two { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { background: radial-gradient(circle at 50% 0, rgba(0,229,255,.1), transparent 36%), var(--bg); }
  .topbar { padding: 12px 5%; }
  .brand img { width: 40px; height: 40px; }
  .brand strong { font-size: 14px; }
  .mobile-menu { top: 70px; border-radius: 14px; }
  .hero { display: none; }
  #softwares { padding-top: 104px; }
  .badge { border-radius: 12px; font-size: 12px; line-height: 1.45; }
  .hero-actions { justify-content: flex-start; }
  .btn { width: 100%; min-height: 48px; padding: 13px 16px; }
  .hero-stats { grid-template-columns: 1fr; margin-top: 24px; }
  .hero-orbit { width: 100%; max-width: 390px; min-height: 410px; transform: scale(.94); transform-origin: top center; }
  .section-title h2, .contact-box h2 { font-size: clamp(26px, 8vw, 36px); }
  .section-title p, .contact-box p { font-size: 16px; }
  .solution-card, .feature, .mini-card, .success-card, .timeline-item, .contact-box { border-radius: 14px; }
  .tech-cloud span { padding: 11px 13px; font-size: 13px; }
}

@media (max-width: 520px) {
  .page-loader { padding: 0 18px; }
  .globe-loader { width: 138px; height: 138px; }
  .globe-loader img { width: 72px; height: 72px; }
  .assistant-widget { left: auto; right: 62px; top: 8px; bottom: auto; width: 52px; }
  .assistant-launcher { width: 52px; height: 56px; }
  .assistant-panel { left: 8px; right: 8px; top: 68px; bottom: 0; width: auto; max-width: calc(100vw - 16px); height: calc(100svh - 68px); max-height: none; border-radius: 20px 20px 0 0; }
  .assistant-widget.expanded .assistant-panel { width: auto; max-width: calc(100vw - 16px); height: calc(100svh - 68px); max-height: none; }
  .assistant-widget.large-chat .assistant-panel { width: auto; max-width: calc(100vw - 16px); min-height: 0; height: calc(100svh - 68px); max-height: none; }
  .assistant-resize-handle { display: none; }
  .assistant-form { display: grid; grid-template-columns: 1fr auto; }
  .assistant-form input { grid-column: 1 / -1; min-height: 46px; }
  .assistant-form button[type="submit"] { min-height: 42px; }
  .assistant-mic { min-width: 48px; }
  .assistant-message { max-width: 96%; font-size: 13px; }
}

@media (max-width: 760px) {
  body.day-theme .assistant-launcher {
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }
  body.day-theme .assistant-launcher img {
    filter: drop-shadow(0 8px 14px rgba(37,99,235,.22)) drop-shadow(0 0 8px rgba(14,165,233,.2));
  }
  body.day-theme .assistant-panel,
  body.day-theme .assistant-widget.expanded .assistant-panel,
  body.day-theme .assistant-widget.large-chat .assistant-panel {
    left: 8px;
    right: 8px;
    width: auto;
    max-width: calc(100vw - 16px);
    min-height: 0;
    height: calc(100svh - 70px);
    max-height: none;
  }
  body.day-theme .assistant-messages,
  body.day-theme .assistant-widget.expanded .assistant-messages,
  body.day-theme .assistant-widget.large-chat .assistant-messages {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
  }
  body.day-theme .assistant-form button[type="submit"] {
    background: linear-gradient(135deg, #f8fbff, #e8f4ff);
    color: #16415f;
    border: 1px solid rgba(2,132,199,.16);
    box-shadow: 0 8px 18px rgba(37,99,235,.07);
  }
}

@media (max-width: 760px) {
  .assistant-widget.open {
    inset: 0;
    width: auto;
    height: var(--assistant-vh, 100dvh);
    opacity: 1;
    transform: none;
    animation: none;
    pointer-events: none;
  }
  .assistant-widget.open .assistant-launcher {
    display: none;
  }
  .assistant-widget.open::after {
    display: none;
  }
  .assistant-widget.open .assistant-panel,
  .assistant-widget.open.expanded .assistant-panel,
  .assistant-widget.open.large-chat .assistant-panel {
    position: fixed;
    inset: 0;
    width: auto;
    max-width: none;
    height: var(--assistant-vh, 100dvh);
    min-height: 0;
    max-height: none;
    border: 0;
    border-radius: 0;
    transform: none;
    resize: none;
    pointer-events: auto;
    display: flex;
  }
  .assistant-widget.open .assistant-header {
    padding: calc(14px + env(safe-area-inset-top)) 16px 12px;
    border-bottom: 1px solid rgba(0,229,255,.16);
  }
  .assistant-widget.open .assistant-messages,
  .assistant-widget.open.expanded .assistant-messages,
  .assistant-widget.open.large-chat .assistant-messages {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    padding: 16px;
  }
  .assistant-widget.open .assistant-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px 96px;
    gap: 9px;
    flex: 0 0 auto;
    padding: 12px 14px calc(14px + env(safe-area-inset-bottom));
  }
  .assistant-widget.open .assistant-form input {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    min-height: 50px;
  }
  .assistant-widget.open .assistant-form .assistant-mic {
    grid-column: 2;
    width: 52px;
    min-width: 52px;
  }
  .assistant-widget.open .assistant-form button[type="submit"] {
    grid-column: 3;
    min-width: 96px;
    padding: 0 14px;
  }
  .assistant-widget.open .assistant-whatsapp {
    flex: 0 0 auto;
    margin: 0 14px 12px;
  }
}
