/* ============================================
   ORBIT.CSS — Seção de tecnologia / órbita
   ============================================ */

.orbit-section {
  position: relative;
  z-index: 1;
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.orbit-desc {
  margin-top: 1.5rem;
  color: rgba(232, 237, 245, 0.5);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 420px;
}

.orbit-bullets {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.orbit-bullet {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.orbit-bullet span {
  font-size: 0.9rem;
  color: rgba(232, 237, 245, 0.6);
}

.bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bullet-dot.green  { background: var(--accent); }
.bullet-dot.pink   { background: var(--accent2); }
.bullet-dot.purple { background: var(--accent3); }

/* Visual de órbita */
.orbit-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 500px;
  margin: 0 auto;
}

.orbit-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  border-radius: 50%;
  animation: corePulse 3s ease infinite;
}

.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid var(--border);
  transform: translate(-50%, -50%);
}

.orbit-ring:nth-child(2) {
  width: 200px; height: 200px;
  animation: rotateRing 10s linear infinite;
}

.orbit-ring:nth-child(3) {
  width: 310px; height: 310px;
  animation: rotateRing 16s linear infinite reverse;
}

.orbit-ring:nth-child(4) {
  width: 420px; height: 420px;
  animation: rotateRing 24s linear infinite;
}

.orbit-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--accent);
}

.orbit-dot.pink   { background: var(--accent2); box-shadow: 0 0 12px var(--accent2); }
.orbit-dot.purple { background: var(--accent3); box-shadow: 0 0 12px var(--accent3); }
