/* ═══════════════════════════════════════
   base.css — Reset, variáveis e tipografia
   STYTEC Soluções de T.I
═══════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

:root {
  --bg:        #04070f;
  --surface:   #080e1e;
  --cyan:      #00c8ff;
  --blue:      #1255e0;
  --blue2:     #0d8fff;
  --white:     #f0f6ff;
  --muted:     #5a7a9e;
  --border:    rgba(0, 180, 255, 0.12);
  --red-anydesk: #e13b3b;
}

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

/* Grid de fundo animado */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(0deg,   transparent, transparent 79px, rgba(0,180,255,0.025) 80px),
    repeating-linear-gradient(90deg,  transparent, transparent 79px, rgba(0,180,255,0.025) 80px);
  pointer-events: none;
  z-index: 0;
}

/* ── Labels de seção ── */
.sec-tag {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.sec-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(22px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}

.sec-desc {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.8;
}

/* ── Botões globais ── */
.btn-primary {
  background: linear-gradient(135deg, #1255e0, #00c8ff);
  color: #fff;
  padding: 16px 44px;
  border: none;
  border-radius: 4px;
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.2s;
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(0,200,255,0.5), 0 0 80px rgba(18,85,224,0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  padding: 16px 44px;
  border: 1px solid rgba(0,200,255,0.35);
  border-radius: 4px;
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.btn-outline:hover {
  border-color: var(--cyan);
  background: rgba(0,200,255,0.07);
}

/* ── Divisor ── */
.divider {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 60px;
}
.div-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.div-text {
  padding: 0 20px;
  font-family: 'Orbitron', monospace;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
