/* ========================================
   NV Soluções — Style
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  color: #f0f0fa;
  background: #08080f;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; cursor: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: none; font-family: inherit; }

/* --- Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; scroll-margin-top: 72px; }
.accent { color: #6B2CF2; }

/* --- Typography --- */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6B2CF2;
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #f0f0fa;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1rem;
  color: #8888aa;
  max-width: 560px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-subtitle { margin: 0 auto; }

/* --- Reveal Animation --- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--delay, 0s);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Custom Cursor --- */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: #6B2CF2;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease;
}
.custom-cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid rgba(107, 44, 242, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}
body.cursor-hover .custom-cursor { width: 14px; height: 14px; }
body.cursor-hover .custom-cursor-follower { width: 50px; height: 50px; }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(8, 8, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(107, 44, 242, 0.15);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo { display: flex; align-items: center; }
.logo-img { height: 36px; }
.navbar-links {
  display: flex;
  gap: 2rem;
}
.navbar-links a {
  font-size: 0.85rem;
  color: #8888aa;
  position: relative;
  transition: color 0.35s ease;
  font-weight: 500;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: #6B2CF2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.navbar-links a:hover { color: #f0f0fa; }
.navbar-links a:hover::after { transform: scaleX(1); }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #6B2CF2, #8B2FC9);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(107, 44, 242, 0.3);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  color: #8888aa;
  font-size: 0.85rem;
  font-weight: 500;
  border-bottom: 1px solid #8888aa;
  transition: color 0.35s ease, border-color 0.35s ease;
}
.btn-ghost:hover { color: #f0f0fa; border-color: #f0f0fa; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #6B2CF2;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.btn-white:hover {
  box-shadow: 0 8px 30px rgba(255,255,255,0.15);
}
.btn-cta-final {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(135deg, #6B2CF2, #8B2FC9);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(107, 44, 242, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.btn-cta-final:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(107, 44, 242, 0.5);
}

/* --- Menu Toggle (Mobile) --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: #f0f0fa;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.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); }

.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(8, 8, 15, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu ul { text-align: center; display: flex; flex-direction: column; gap: 2rem; }
.mobile-menu a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f0f0fa;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,44,242,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,44,242,0.04) 1px, transparent 1px);
  background-size: 70px 70px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: rgba(107,44,242,0.18);
  animation: orbFloat 8s ease-in-out alternate infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: -50px; left: -50px;
  background: rgba(139,47,201,0.12);
  animation: orbFloat 8s ease-in-out alternate infinite;
  animation-delay: -4s;
}
@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.08); }
}
#particlesCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 4rem;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6B2CF2;
  font-weight: 500;
}
.eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #6B2CF2;
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}
.hero-line { display: block; }
.hero-line-gradient {
  background: linear-gradient(135deg, #6B2CF2, #8B2FC9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: #8888aa;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.scroll-indicator span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #55556a;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, #6B2CF2, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========================================
   CREDIBILITY BAR
   ======================================== */
.credibility {
  background: #0d0d1a;
  border-top: 1px solid rgba(107,44,242,0.15);
  border-bottom: 1px solid rgba(107,44,242,0.15);
  padding: 2.5rem 0;
}
.credibility-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.credibility-item { text-align: center; }
.credibility-number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #6B2CF2, #8B2FC9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.credibility-text {
  font-size: 2rem;
}
.credibility-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #55556a;
  margin-top: 0.25rem;
}
.credibility-divider {
  width: 1px;
  height: 50px;
  background: rgba(107,44,242,0.15);
}

/* ========================================
   PILARES
   ======================================== */
.pilares { background: #08080f; }
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
}
.pilar-card {
  position: relative;
  background: #111122;
  border: 1px solid rgba(107,44,242,0.15);
  padding: 2.5rem 2rem;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s ease;
}
.pilar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(107,44,242,0.4);
}
.pilar-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6B2CF2, #8B2FC9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pilar-card:hover .pilar-bar { transform: scaleX(1); }
.pilar-glow {
  position: absolute;
  bottom: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at bottom right, rgba(107,44,242,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.pilar-card:hover .pilar-glow { opacity: 1; }
.pilar-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 5rem;
  color: rgba(107,44,242,0.08);
  line-height: 1;
  transition: color 0.35s ease;
}
.pilar-card:hover .pilar-num { color: rgba(107,44,242,0.18); }
.pilar-icon {
  width: 48px; height: 48px;
  background: rgba(107,44,242,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 1rem;
}
.pilar-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.pilar-desc {
  font-size: 0.9rem;
  color: #8888aa;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.pilar-link {
  font-size: 0.85rem;
  color: #6B2CF2;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.35s ease;
}
.pilar-link:hover { gap: 0.7rem; }

/* ========================================
   ERP
   ======================================== */
.erp { background: #0d0d1a; }
.erp-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.erp-note {
  font-size: 0.8rem;
  color: #55556a;
  margin-top: 1.5rem;
  line-height: 1.6;
}
.erp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
}
.erp-card {
  display: block;
  background: #111122;
  border: 1px solid rgba(107,44,242,0.15);
  padding: 2rem 1.5rem;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  border-left: 2px solid transparent;
}
.erp-card:hover {
  transform: translateX(3px);
  border-left-color: #6B2CF2;
  background: #151530;
}
.erp-card-full { grid-column: 1 / -1; }
.erp-segment {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6B2CF2;
  font-weight: 500;
}
.erp-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0.5rem 0;
}
.erp-desc {
  font-size: 0.85rem;
  color: #8888aa;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.erp-link {
  font-size: 0.8rem;
  color: #6B2CF2;
  font-weight: 500;
}

/* ========================================
   NV HUB
   ======================================== */
.hub {
  background: #08080f;
  position: relative;
  overflow: hidden;
}
.hub-bg-text {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22rem;
  color: rgba(107,44,242,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hub-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hub-note {
  font-size: 0.85rem;
  color: #55556a;
  margin: 1.5rem 0 2rem;
  line-height: 1.6;
}
.hub-modules { display: flex; flex-direction: column; gap: 1.5px; }
.hub-module {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #111122;
  border: 1px solid rgba(107,44,242,0.15);
  padding: 1.5rem;
  border-right: 2px solid transparent;
  transition: border-color 0.35s ease, background 0.35s ease;
}
.hub-module:hover {
  border-right-color: #6B2CF2;
  background: #151530;
}
.hub-module-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(107,44,242,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub-module-info { flex: 1; }
.hub-module-info h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.hub-module-info p {
  font-size: 0.82rem;
  color: #8888aa;
  line-height: 1.5;
}
.hub-badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #55556a;
  border: 1px solid rgba(85,85,106,0.3);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
  font-weight: 500;
}
.hub-badge-new {
  color: #9B40F8;
  border-color: rgba(107,44,242,0.4);
  background: rgba(107,44,242,0.1);
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107,44,242,0.3); }
  50% { box-shadow: 0 0 12px 4px rgba(107,44,242,0.15); }
}

/* ========================================
   IA & AUTOMAÇÃO
   ======================================== */
.ia { background: #0d0d1a; }
.ia-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.ia-text .section-subtitle { margin-bottom: 2rem; }
.ia-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
}
.ia-feature {
  background: #111122;
  border: 1px solid rgba(107,44,242,0.15);
  padding: 1.75rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ia-feature:hover {
  border-color: rgba(107,44,242,0.4);
  transform: translateY(-3px);
}
.ia-feature-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(107,44,242,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ia-feature h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: #f0f0fa;
}
.ia-feature p {
  font-size: 0.82rem;
  color: #8888aa;
  line-height: 1.55;
}
.ia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
}
.ia-card {
  position: relative;
  background: #111122;
  border: 1px solid rgba(107,44,242,0.15);
  padding: 2.5rem 2rem;
}
.ia-card-curso {
  background: linear-gradient(145deg, #0f0f22, #130d26);
}
.ia-card-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, #6B2CF2, transparent);
}
.ia-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6B2CF2;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.ia-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.ia-desc {
  font-size: 0.9rem;
  color: #8888aa;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.ia-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.ia-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #8888aa;
  line-height: 1.5;
}
.ia-list li svg { min-width: 18px; margin-top: 2px; }
.ia-price { margin-bottom: 1.5rem; }
.ia-price-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  background: linear-gradient(135deg, #6B2CF2, #8B2FC9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ia-price-label {
  font-size: 0.85rem;
  color: #55556a;
  margin-left: 0.25rem;
}

/* ========================================
   DESENVOLVIMENTO
   ======================================== */
.dev { background: #08080f; }
.dev-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.dev-text .section-subtitle { margin-bottom: 2rem; }
.dev-steps { display: flex; flex-direction: column; }
.dev-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
}
.dev-step:last-child { padding-bottom: 0; }
.dev-step:last-child .dev-step-line { display: none; }
.dev-step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: rgba(107,44,242,0.18);
  min-width: 60px;
  transition: color 0.35s ease;
}
.dev-step:hover .dev-step-num { color: #6B2CF2; }
.dev-step-content h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.dev-step-content p {
  font-size: 0.88rem;
  color: #8888aa;
  line-height: 1.6;
}
.dev-step-line {
  position: absolute;
  left: 30px;
  top: 3rem;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(107,44,242,0.3), transparent);
}

/* ========================================
   EMPREENDA COM IA — PILAR 04
   ======================================== */
.curso {
  background: #08080f;
  position: relative;
  overflow: hidden;
}
.curso-bg-glow {
  position: absolute;
  top: 0; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(107,44,242,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.curso-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.curso-text .section-subtitle { margin-bottom: 2rem; }
.curso-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.curso-topics li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: #8888aa;
  line-height: 1.5;
}
.curso-topics li svg { min-width: 16px; margin-top: 2px; }
.curso-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.curso-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9B40F8;
  border: 1px solid rgba(107,44,242,0.3);
  background: rgba(107,44,242,0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-weight: 500;
}
.curso-visual { position: relative; }
.curso-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(107,44,242,0.2);
  box-shadow: 0 24px 80px rgba(107,44,242,0.12);
  aspect-ratio: 16/9;
  background: #111122;
}
.curso-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.curso-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(145deg, #111122, #0d0d22);
}
.curso-img-placeholder span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #f0f0fa;
}
.curso-img-placeholder small {
  font-size: 0.75rem;
  color: #55556a;
}

/* ========================================
   DEPOIMENTOS
   ======================================== */
.depoimentos { background: #0d0d1a; }
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.depoimento-card {
  background: #111122;
  border: 1px solid rgba(107,44,242,0.15);
  padding: 2rem;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s ease;
}
.depoimento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(107,44,242,0.4);
}
/* ========================================
   DEPOIMENTOS EM VÍDEO
   ======================================== */
.depoimentos-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.depoimento-video-card {
  background: #111122;
  border: 1px solid rgba(107,44,242,0.15);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s ease, box-shadow 0.35s ease;
}
.depoimento-video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(107,44,242,0.5);
  box-shadow: 0 12px 40px rgba(107,44,242,0.15);
}
.depoimento-video-thumb {
  position: relative;
  aspect-ratio: 9/14;
  overflow: hidden;
}
.depoimento-video-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.depoimento-video-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #1a1035, #0d0d22);
}
.depoimento-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(107,44,242,0.18) 0%, transparent 70%);
}
.depoimento-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,15,0.2);
  transition: background 0.35s ease;
}
.depoimento-video-card:hover .depoimento-video-overlay {
  background: rgba(8,8,15,0.1);
}
.play-btn {
  width: 60px; height: 60px;
  background: rgba(107,44,242,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(107,44,242,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.depoimento-video-card:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 0 18px rgba(107,44,242,0.1);
}
.play-btn svg { margin-left: 3px; }
.depoimento-video-ig {
  position: absolute;
  bottom: 1rem; left: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.depoimento-video-info {
  padding: 1rem 1.25rem;
}
.depoimento-video-info .depoimento-stars {
  margin-bottom: 0.4rem;
}
.depoimento-video-info p {
  font-size: 0.82rem;
  color: #55556a;
}
.depoimento-video-info p strong {
  color: #f0f0fa;
  font-weight: 600;
}

/* ========================================
   MODAL DE VÍDEO
   ======================================== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.video-modal.active {
  opacity: 1;
  pointer-events: all;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.video-modal-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-modal.active .video-modal-inner {
  transform: scale(1) translateY(0);
}
.video-modal-close {
  position: absolute;
  top: -3rem; right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(107,44,242,0.2);
  border: 1px solid rgba(107,44,242,0.3);
  color: #f0f0fa;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.video-modal-close:hover { background: rgba(107,44,242,0.4); }
.video-modal-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(107,44,242,0.2);
  aspect-ratio: 9/16;
  background: #08080f;
}
.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* --- responsive video grid --- */
@media (max-width: 900px) {
  .depoimentos-video-grid { grid-template-columns: 1fr; gap: 1rem; }
  .depoimento-video-thumb { aspect-ratio: 9/10; }
  .video-modal-inner { max-width: 90vw; }
}

.depoimento-stars {
  color: #f5c518;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.depoimento-text {
  font-style: italic;
  color: #8888aa;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.depoimento-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.depoimento-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6B2CF2, #8B2FC9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}
.depoimento-author strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.depoimento-author span {
  font-size: 0.75rem;
  color: #55556a;
}

/* ========================================
   CTA FINAL
   ======================================== */
.cta-final {
  position: relative;
  background: linear-gradient(135deg, #0f0a2a 0%, #08080f 50%, #1a0a3a 100%);
  text-align: center;
  overflow: hidden;
}
.cta-final-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-final-orb {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(107,44,242,0.15), transparent 70%);
  border-radius: 50%;
  animation: ctaPulse 4s ease-in-out alternate infinite;
}
@keyframes ctaPulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.1); opacity: 1; }
}
.cta-final-content { position: relative; z-index: 1; }
.cta-final-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  max-width: 760px;
  margin: 0 auto 1.5rem;
  line-height: 1.1;
}
.cta-final-subtitle {
  font-size: 1rem;
  color: #8888aa;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #0d0d1a;
  border-top: 1px solid rgba(107,44,242,0.15);
  padding-top: 3rem;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 2rem;
}
.footer-brand p {
  font-size: 0.8rem;
  color: #55556a;
  margin-top: 0.75rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: #8888aa;
  transition: color 0.35s ease;
}
.footer-links a:hover { color: #f0f0fa; }
.footer-bottom {
  border-top: 1px solid rgba(107,44,242,0.08);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: #55556a;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .navbar-links, .navbar-cta { display: none; }
  .menu-toggle { display: flex; }

  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .scroll-indicator { display: none; }

  .credibility-inner {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .credibility-divider { display: none; }
  .credibility-item { flex: 1 1 40%; }

  .pilares-grid { grid-template-columns: 1fr 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }

  .erp-layout,
  .hub-layout,
  .dev-layout,
  .curso-layout { grid-template-columns: 1fr; gap: 3rem; }

  .erp-grid { grid-template-columns: 1fr; }
  .erp-card-full { grid-column: auto; }

  .ia-grid { grid-template-columns: 1fr; }
  .ia-list-cols { grid-template-columns: 1fr; }
  .ia-card-full { max-width: 100%; }

  .hub-bg-text { font-size: 10rem; right: -1rem; }

  .footer-inner { flex-direction: column; gap: 2rem; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 5rem 0; }
  .hero-content { padding-top: 6rem; }
  .credibility-inner { gap: 1.5rem; }
  .credibility-number { font-size: 2rem; }
  .custom-cursor, .custom-cursor-follower { display: none; }
}
