/* MaximizIA — tema laranja + roxo */

:root {
  --void: #08080a;
  --mist: #e8e6e3;
  --orange: #ea580c;
  --orange-hover: #f97316;
  --orange-bright: #ff6b35;
  --purple: #a855f7;
  --purple-muted: #7c3aed;
  --purple-dim: rgba(168, 85, 247, 0.35);
  --purple-glow: rgba(168, 85, 247, 0.2);
}

html {
  scroll-behavior: smooth;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--purple-dim) transparent;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--purple-dim);
  border-radius: 4px;
}

::selection {
  background: var(--purple-dim);
  color: #fafafa;
}

#three-canvas {
  display: block;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.vignette-overlay {
  background: radial-gradient(
    ellipse at center,
    transparent 42%,
    rgba(8, 8, 10, 0.78) 100%
  );
}

@keyframes heroPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

.animate-hero-pulse {
  animation: heroPulse 2.2s ease-in-out infinite;
}

.animate-scroll-line {
  animation: scrollLine 2s ease-in-out infinite;
}

.scroll-indicator-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(168, 85, 247, 0.55) 35%,
    rgba(234, 88, 12, 0.55) 100%
  );
}

/* Formulários (área do cliente) */
.label-cliente {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(232, 230, 227, 0.4);
  margin-bottom: 0.5rem;
}

.input-cliente {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.875rem 1rem;
  color: #e8e6e3;
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.25s ease;
  box-sizing: border-box;
  border-radius: 2px;
}

.input-cliente::placeholder {
  color: rgba(232, 230, 227, 0.25);
}

.input-cliente:focus {
  border-color: rgba(168, 85, 247, 0.45);
}

.input-cliente:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.12);
}
