:root {
  --bg:       #080A18;
  --bg2:      #0C0F24;
  --bg3:      #101430;
  --violet:   #5A3CDC;
  --violet2:  #7B5FE8;
  --cyan:     #00C8E6;
  --cyan2:    #00E5FF;
  --white:    #FFFFFF;
  --light:    #C8C8E6;
  --muted:    #6B6B9A;
  --card:     #0E1228;
  --border:   rgba(0,200,230,0.12);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Work Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(8,10,24,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding .3s;
}
.nav-logo {
  display: flex; align-items: center;
}
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--light); text-decoration: none;
  font-size: .875rem; font-weight: 500; letter-spacing: .04em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-cta {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: #fff; border: none; padding: 10px 24px;
  border-radius: 100px; font-family: inherit;
  font-size: .875rem; font-weight: 600; cursor: pointer;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.nav-cta:hover { opacity: .85; transform: translateY(-1px); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 60px 80px;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(90,60,220,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(0,200,230,.10) 0%, transparent 60%);
}
.hero-orbit {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.hero-orbit svg { opacity: .06; }
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 900px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,200,230,.08); border: 1px solid rgba(0,200,230,.25);
  padding: 6px 16px; border-radius: 100px;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em;
  color: var(--cyan); text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeUp .8s ease both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--cyan); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }
.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 28px;
  animation: fadeUp .8s .1s ease both;
}
.hero-title .accent { color: var(--cyan); }
.hero-title .grad {
  background: linear-gradient(135deg, var(--violet2), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 400;
  color: var(--light); line-height: 1.7; max-width: 640px; margin: 0 auto 44px;
  animation: fadeUp .8s .2s ease both;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .8s .3s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: #fff; text-decoration: none;
  padding: 16px 36px; border-radius: 100px;
  font-family: inherit; font-size: 1rem; font-weight: 700;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 40px rgba(90,60,220,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(0,200,230,.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  border: 1px solid rgba(0,200,230,.35);
  color: var(--light); text-decoration: none;
  padding: 16px 36px; border-radius: 100px;
  font-family: inherit; font-size: 1rem; font-weight: 500;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,200,230,.05); }
.hero-stats {
  display: flex; justify-content: center; gap: 64px; flex-wrap: wrap;
  margin-top: 80px; padding-top: 48px;
  border-top: 1px solid var(--border);
  animation: fadeUp .8s .4s ease both;
}
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--cyan); }
.stat-label { font-size: .8rem; font-weight: 500; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; }

/* ── SECTION BASE ── */
section { padding: 120px 60px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 2px;
  background: var(--cyan);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-title span { color: var(--cyan); }
.section-sub { color: var(--light); font-size: 1.1rem; line-height: 1.7; max-width: 600px; }
.container { max-width: 1200px; margin: 0 auto; }

/* ── SOBRE ── */
#sobre { background: var(--bg2); }
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; margin-top: 60px;
}
.sobre-text p { color: var(--light); line-height: 1.8; margin-bottom: 20px; font-size: 1.05rem; }
.sobre-visual {
  position: relative; display: flex;
  align-items: center; justify-content: center;
}
.orbit-visual { position: relative; width: 320px; height: 320px; }
.orbit-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid transparent;
  animation: spin linear infinite;
}
.orbit-ring:nth-child(1) {
  inset: 0;
  border-color: rgba(90,60,220,.4);
  animation-duration: 20s;
}
.orbit-ring:nth-child(2) {
  inset: 40px;
  border-color: rgba(0,200,230,.3);
  animation-duration: 14s;
  animation-direction: reverse;
}
.orbit-ring:nth-child(3) {
  inset: 80px;
  border-color: rgba(90,60,220,.2);
  animation-duration: 10s;
}
.orbit-dot {
  position: absolute; width: 12px; height: 12px;
  border-radius: 50%; top: -6px; left: calc(50% - 6px);
}
.orbit-dot.cyan { background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.orbit-dot.violet { background: var(--violet); box-shadow: 0 0 16px var(--violet); }
.orbit-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.orbit-center-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--white); opacity: .5;
}
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.sobre-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.tag {
  background: rgba(90,60,220,.12); border: 1px solid rgba(90,60,220,.3);
  color: var(--violet2); padding: 6px 16px; border-radius: 100px;
  font-size: .8rem; font-weight: 600;
}

/* ── SOLUÇÕES ── */
#solucoes { background: var(--bg); }
.solucoes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 60px;
}
.solucao-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 32px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.solucao-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  opacity: 0; transition: opacity .3s;
}
.solucao-card:hover { border-color: rgba(0,200,230,.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.solucao-card:hover::before { opacity: 1; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(90,60,220,.2), rgba(0,200,230,.15));
  border: 1px solid rgba(0,200,230,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 24px;
}
.card-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.card-desc { color: var(--light); font-size: .9rem; line-height: 1.7; }

/* ── CUSTOMIZAÇÕES ── */
#customizacoes { background: var(--bg2); }
.custom-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; margin-top: 60px;
}
.custom-steps { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; border-radius: 16px;
  border: 1px solid var(--border); background: var(--card);
  transition: border-color .3s;
}
.step:hover { border-color: rgba(0,200,230,.3); }
.step-num {
  min-width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800;
}
.step-body h4 { font-weight: 700; margin-bottom: 6px; }
.step-body p { color: var(--light); font-size: .9rem; line-height: 1.6; }
.custom-visual {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 40px; position: relative; overflow: hidden;
}
.custom-visual::after {
  content: ''; position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,230,.15), transparent 70%);
}
.custom-feature { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.custom-feature:last-child { border-bottom: none; }
.feat-icon { font-size: 1.3rem; }
.feat-text { font-weight: 500; color: var(--light); font-size: .95rem; }
.feat-check { margin-left: auto; color: var(--cyan); font-weight: 700; }

/* ── INTEGRAÇÕES ── */
#integracoes { background: var(--bg); }
.integra-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 60px;
}
.integra-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 20px;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.integra-card:hover { border-color: rgba(0,200,230,.35); transform: translateY(-3px); }
.integra-icon { font-size: 2rem; margin-bottom: 12px; }
.integra-name { font-size: .85rem; font-weight: 600; color: var(--light); }

/* ── BENEFÍCIOS ── */
#beneficios { background: var(--bg2); }
.beneficios-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
  margin-top: 60px;
}
.beneficio {
  display: flex; gap: 24px; padding: 32px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; transition: border-color .3s;
}
.beneficio:hover { border-color: rgba(90,60,220,.4); }
.ben-icon {
  min-width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(90,60,220,.25), rgba(0,200,230,.15));
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.ben-title { font-weight: 700; margin-bottom: 8px; font-size: 1.05rem; }
.ben-desc { color: var(--light); font-size: .9rem; line-height: 1.7; }

/* ── PORTFOLIO ── */
#portfolio { background: var(--bg); }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 60px;
}
.portfolio-card {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); background: var(--card);
  transition: transform .3s, box-shadow .3s;
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.portfolio-img {
  height: 180px;
  background: linear-gradient(135deg, rgba(90,60,220,.3), rgba(0,200,230,.2));
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
  position: relative; overflow: hidden;
}
.portfolio-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--card));
}
.portfolio-body { padding: 24px; }
.portfolio-tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 10px;
}
.portfolio-title { font-weight: 700; margin-bottom: 8px; }
.portfolio-desc { color: var(--light); font-size: .85rem; line-height: 1.6; }

/* ── DEPOIMENTOS ── */
#depoimentos { background: var(--bg2); }
.depo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 60px;
}
.depo-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
}
.depo-stars { color: #FFB800; font-size: .9rem; margin-bottom: 16px; }
.depo-text { color: var(--light); font-size: .95rem; line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.depo-author { display: flex; align-items: center; gap: 14px; }
.depo-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem;
}
.depo-name { font-weight: 700; font-size: .9rem; }
.depo-role { color: var(--muted); font-size: .8rem; }

/* ── CTA FINAL ── */
#contato {
  background: var(--bg);
  position: relative; overflow: hidden;
}
#contato::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,60,220,.12), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  text-align: center; position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto;
}
.cta-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; line-height: 1.1;
}
.cta-title span { color: var(--cyan); }
.cta-sub { color: var(--light); font-size: 1.1rem; line-height: 1.7; margin-bottom: 44px; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 14px;
  background: #25D366; color: #fff; text-decoration: none;
  padding: 20px 48px; border-radius: 100px;
  font-family: inherit; font-size: 1.1rem; font-weight: 700;
  box-shadow: 0 0 50px rgba(37,211,102,.3);
  transition: transform .2s, box-shadow .2s;
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 0 80px rgba(37,211,102,.5); }
.btn-whatsapp svg { width: 24px; height: 24px; fill: white; }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 60px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.footer-logo { font-size: 1.3rem; font-weight: 800; }
.footer-logo span { color: var(--cyan); }
.footer-copy { color: var(--muted); font-size: .85rem; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: var(--cyan); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── DIVIDER ── */
.divider {
  height: 1px; max-width: 1200px; margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  .sobre-grid, .custom-layout { grid-template-columns: 1fr; gap: 48px; }
  .solucoes-grid { grid-template-columns: 1fr 1fr; }
  .integra-grid { grid-template-columns: repeat(2, 1fr); }
  .beneficios-grid { grid-template-columns: 1fr; }
  .portfolio-grid, .depo-grid { grid-template-columns: 1fr; }
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  #hero { padding: 100px 24px 60px; }
  .hero-stats { gap: 32px; }
}
@media (max-width: 600px) {
  .solucoes-grid { grid-template-columns: 1fr; }
  .integra-grid { grid-template-columns: repeat(2, 1fr); }
}
