:root {
  --bg: #080c0f;
  --bg2: #0d1318;
  --bg3: #111820;
  --cyan: #00e5c8;
  --cyan-dim: #00c4ac;
  --cyan-glow: rgba(0,229,200,0.15);
  --cyan-glow2: rgba(0,229,200,0.06);
  --white: #f0f4f5;
  --muted: #6b8a90;
  --muted2: #3a5158;
  --border: rgba(0,229,200,0.12);
  --border2: rgba(255,255,255,0.05);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, opacity 0.2s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0,229,200,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.18s ease, width 0.2s, height 0.2s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 16px; height: 16px; }

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 5%;
  background: rgba(8,12,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
nav.scrolled { padding: 1rem 5%; }

.nav-logo {
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem;
  color: var(--cyan);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--white); }

.nav-links {
  display: flex; gap: 2.4rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.77rem;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 8rem 5% 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,229,200,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(0,229,200,0.04) 0%, transparent 60%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border2) 1px, transparent 1px),
    linear-gradient(90deg, var(--border2) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Floating data particles */
.particle {
  position: absolute;
  font-family: 'Space Mono', monospace;
  font-size: 0.66rem;
  color: var(--cyan);
  opacity: 0;
  animation: float-particle 8s infinite;
  pointer-events: none;
}
@keyframes float-particle {
  0% { opacity: 0; transform: translateY(20px); }
  20% { opacity: 0.3; }
  80% { opacity: 0.15; }
  100% { opacity: 0; transform: translateY(-60px); }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 900px;
  text-align: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.715rem;
  color: var(--cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  background: var(--cyan-glow2);
  border-radius: 2px;
}
.hero-badge::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.86rem, 6.6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fade-up 1s ease both;
}
.hero-title .accent { color: var(--cyan); }
.hero-title .line2 {
  display: block;
  font-style: italic;
  font-size: 0.85em;
  color: rgba(240,244,245,0.7);
}

.hero-sub {
  font-size: 1.155rem;
  color: rgba(240,244,245,0.55);
  max-width: 560px;
  margin: 0 auto 0.8rem;
  line-height: 1.75;
  animation: fade-up 1s 0.15s ease both;
  font-weight: 400;
}

.hero-desc {
  font-size: 0.99rem;
  color: rgba(240,244,245,0.45);
  max-width: 540px;
  margin: 0 auto 2.8rem;
  line-height: 1.8;
  animation: fade-up 1s 0.25s ease both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
  font-family: 'Space Mono', monospace;
  font-size: 0.825rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  animation: fade-up 1s 0.35s ease both;
  cursor: none;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--cyan);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: var(--bg); }
.btn-primary span { position: relative; z-index: 1; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SECTION COMMON */
section { padding: 7rem 5%; }
.section-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.66rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.section-tag::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--cyan);
  opacity: 0.4;
}
.section-title {
  font-size: clamp(2.2rem, 4.4vw, 3.3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-title .accent { color: var(--cyan); }
.section-body {
  font-size: 1.045rem;
  color: rgba(240,244,245,0.5);
  line-height: 1.9;
  max-width: 560px;
}

/* ABOUT */
.about {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center;
}
.about-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 1.2rem;
  margin-top: 2rem;
}
.about-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.99rem;
  color: rgba(240,244,245,0.65);
  line-height: 1.6;
}
.about-list li::before {
  content: '—';
  color: var(--cyan);
  font-family: 'Space Mono', monospace;
  font-size: 0.77rem;
  margin-top: 0.18rem;
  flex-shrink: 0;
}
.about-visual {
  position: relative;
  height: 360px;
  display: flex; align-items: center; justify-content: center;
}
.about-hex {
  width: 220px; height: 220px;
  border: 1px solid var(--border);
  background: var(--cyan-glow2);
  transform: rotate(45deg);
  position: relative;
  animation: rotate-slow 20s linear infinite;
}
.about-hex::before {
  content: '';
  position: absolute; inset: 20px;
  border: 1px solid var(--border);
  animation: rotate-slow 15s linear infinite reverse;
}
.about-hex-text {
  position: absolute;
  font-family: 'Space Mono', monospace;
  font-size: 0.715rem;
  color: var(--cyan);
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@keyframes rotate-slow {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}

/* SERVICES */
.services { max-width: 1100px; margin: 0 auto 0; padding: 7rem 0; }
.services-header { margin-bottom: 4rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--bg3); }

.service-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.66rem;
  color: var(--muted2);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}
.service-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--cyan);
  font-size: 1.1rem;
}
.service-title {
  font-size: 1.155rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.902rem;
  color: rgba(240,244,245,0.45);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.service-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.service-list li {
  font-family: 'Space Mono', monospace;
  font-size: 0.715rem;
  color: var(--muted);
  display: flex; align-items: flex-start; gap: 0.5rem;
  line-height: 1.5;
}
.service-list li::before {
  content: '›';
  color: var(--cyan);
  font-size: 0.88rem;
  flex-shrink: 0;
}
.btn-saiba-mais {
  display: inline-flex; align-items: center;
  margin-top: 1.8rem;
  margin-bottom: 2.8rem;
  padding: 0.55rem 1.2rem;
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--border);
  font-family: 'Space Mono', monospace;
  font-size: 0.715rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s, border-color 0.3s;
  cursor: none;
}
.btn-saiba-mais::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--cyan);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-saiba-mais:hover::before { transform: translateX(0); }
.btn-saiba-mais:hover { color: var(--bg); border-color: var(--cyan); }
.btn-saiba-mais span { position: relative; z-index: 1; }

.service-tag {
  position: absolute; bottom: 2rem; right: 2rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.605rem;
  color: var(--muted2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* PROCESS */
.process {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-header { max-width: 500px; margin-bottom: 4rem; }
.process-steps {
  position: relative;
  display: flex; flex-direction: column; gap: 0;
}
.process-steps::before {
  content: '';
  position: absolute; left: 22px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--cyan) 0%, var(--muted2) 80%, transparent 100%);
}
.process-step {
  display: grid; grid-template-columns: 46px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border2);
  position: relative;
  cursor: default;
}
.process-step:last-child { border-bottom: none; }
.step-dot {
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.66rem;
  color: var(--cyan);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
  position: relative; z-index: 1;
}
.process-step:hover .step-dot {
  background: var(--cyan-glow);
  border-color: var(--cyan);
}
.step-content { padding-top: 0.6rem; }
.step-title {
  font-size: 1.21rem; font-weight: 500;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.process-step:hover .step-title { color: var(--cyan); }
.step-desc {
  font-size: 0.935rem;
  color: rgba(240,244,245,0.45);
  line-height: 1.8;
}

/* FOR WHOM */
.for-whom { max-width: 1100px; margin: 0 auto; padding: 7rem 0; }
.for-whom-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.for-card {
  background: var(--bg);
  padding: 2rem 2rem;
  display: flex; align-items: flex-start; gap: 1.2rem;
  transition: background 0.3s;
}
.for-card:hover { background: var(--bg3); }
.for-card-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 0.825rem;
  margin-top: 0.1rem;
}
.for-card-text {
  font-size: 0.968rem;
  color: rgba(240,244,245,0.6);
  line-height: 1.7;
}

/* CTA */
.cta {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(0,229,200,0.07) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-title {
  font-size: clamp(2.2rem, 4.4vw, 3.52rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.cta-title .accent { color: var(--cyan); }
.cta-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.8rem;
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 380px;
  margin-left: auto; margin-right: auto;
}
.cta-list li {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.99rem;
  color: rgba(240,244,245,0.5);
}
.cta-list li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}
.cta-conclusion {
  font-size: 1.045rem;
  color: rgba(240,244,245,0.4);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.cta-conclusion strong { color: var(--white); font-weight: 600; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 1rem 2.4rem;
  background: var(--cyan);
  color: var(--bg);
  font-family: 'Space Mono', monospace;
  font-size: 0.825rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
  cursor: none;
}
.btn-whatsapp:hover { background: var(--cyan-dim); transform: translateY(-2px); }
.btn-whatsapp svg { width: 16px; height: 16px; flex-shrink: 0; }

/* FOOTER */
footer {
  padding: 2rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-logo {
  font-family: 'Space Mono', monospace;
  font-size: 0.935rem;
  color: var(--cyan);
  text-decoration: none;
}
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 0.66rem;
  color: var(--muted2);
  letter-spacing: 0.08em;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 1rem 4%; }
  .nav-links { display: none; }
  section { padding: 5rem 4%; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .for-whom-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}

/* CURSOR — desabilitado em touch/mobile */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .btn-primary, .btn-whatsapp { cursor: pointer; }
}
