/* ═══════════════════════════════════════
   sections.css — Todas as seções internas
   STYTEC Soluções de T.I
═══════════════════════════════════════ */

/* ════════════════════
   SERVIÇOS
════════════════════ */
#servicos {
  position: relative;
  z-index: 2;
  padding: 100px 60px;
}

.srv-header {
  text-align: center;
  margin-bottom: 64px;
}
.srv-header .sec-desc {
  margin: 0 auto;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.srv-card {
  background: var(--surface);
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s;
}
.srv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.srv-card:hover { background: #0b1428; }
.srv-card:hover::after { transform: scaleX(1); }

.srv-num {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  color: rgba(0,200,255,0.25);
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.srv-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.srv-name {
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.srv-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

/* ════════════════════
   ANYDESK
════════════════════ */
#anydesk {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  background: rgba(8, 14, 30, 0.7);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.anydesk-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.anydesk-left  { flex: 1; min-width: 260px; }
.anydesk-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.anydesk-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 16px 28px;
}

.anydesk-logo {
  height: 36px;
  object-fit: contain;
}

.anydesk-name {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}

.btn-anydesk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red-anydesk);
  color: #fff;
  padding: 15px 36px;
  border-radius: 4px;
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  white-space: nowrap;
}
.btn-anydesk:hover {
  background: #c0392b;
  box-shadow: 0 0 28px rgba(225,59,59,0.45);
  transform: translateY(-2px);
}

.anydesk-note {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-align: center;
}

/* ════════════════════
   PROCESSO
════════════════════ */
#processo {
  position: relative;
  z-index: 2;
  padding: 100px 60px;
}

.proc-inner  { max-width: 1060px; margin: 0 auto; }
.proc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 52px;
}

.steps { display: flex; flex-direction: column; }

.step {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step-circle {
  width: 40px; height: 40px; min-width: 40px;
  border: 1px solid rgba(0,200,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  transition: background 0.3s, border-color 0.3s;
}
.step:hover .step-circle {
  background: rgba(0,200,255,0.1);
  border-color: var(--cyan);
}

.step h4 {
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 7px;
  margin-top: 8px;
}
.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Terminal ── */
.terminal {
  background: #02050a;
  border: 1px solid rgba(0,200,255,0.15);
  border-radius: 6px;
  overflow: hidden;
  font-family: 'Courier New', monospace;
  font-size: 12px;
}
.term-bar {
  background: rgba(0,200,255,0.05);
  border-bottom: 1px solid rgba(0,200,255,0.1);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.term-dot   { width: 10px; height: 10px; border-radius: 50%; }
.term-title {
  margin-left: auto;
  font-family: 'Orbitron', monospace;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--muted);
}
.term-body { padding: 22px; }
.tl { margin-bottom: 9px; line-height: 1.5; }
.tp  { color: var(--cyan);  }
.tc  { color: #c8e6c9;      }
.to  { color: var(--muted); }
.ts  { color: #69f0ae;      }
.tw  { color: #ffcc00;      }
.tcur {
  display: inline-block;
  width: 7px; height: 13px;
  background: var(--cyan);
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ════════════════════
   NÚMEROS
════════════════════ */
#numeros {
  position: relative;
  z-index: 2;
  padding: 72px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.nums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 960px;
  margin: 0 auto;
}

.num-item {
  text-align: center;
  padding: 36px 16px;
  border-right: 1px solid var(--border);
}
.num-item:last-child { border-right: none; }

.num-val {
  font-family: 'Orbitron', monospace;
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--white), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.num-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ════════════════════
   CONTATO / CTA
════════════════════ */
#contato {
  position: relative;
  z-index: 2;
  padding: 110px 60px;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(18,85,224,0.18) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 2; }

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta-contacts {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.cta-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.cc-icon {
  width: 40px; height: 40px;
  background: rgba(0,200,255,0.08);
  border: 1px solid rgba(0,200,255,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.cc-text span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}
.cc-text strong {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
  transition: color 0.2s;
}
.cta-contact:hover .cc-text strong { color: var(--cyan); }

/* ════════════════════
   FOOTER
════════════════════ */
footer {
  position: relative;
  z-index: 2;
  background: rgba(4, 7, 15, 0.97);
  border-top: 1px solid var(--border);
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  height: 32px;
  filter: drop-shadow(0 0 6px rgba(0,200,255,0.4));
}
.footer-copy { font-size: 12px; color: var(--muted); }

/* ════════════════════
   BOTÃO FLUTUANTE WA
════════════════════ */
.wa-btn {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 998;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.7);
}

/* ════════════════════
   RESPONSIVO GERAL
════════════════════ */
@media (max-width: 900px) {
  .divider        { padding: 0 20px; }
  #servicos,
  #anydesk,
  #processo,
  #numeros,
  #contato        { padding: 70px 20px; }

  .srv-grid       { grid-template-columns: 1fr; }
  .proc-grid      { grid-template-columns: 1fr; gap: 48px; }

  .nums-grid      { grid-template-columns: repeat(2, 1fr); }
  .num-item:nth-child(2) { border-right: none; }
  .num-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .num-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }

  .anydesk-inner  { flex-direction: column; align-items: flex-start; }
  .anydesk-right  { align-items: flex-start; width: 100%; }

  footer          { padding: 24px 20px; flex-direction: column; text-align: center; }
}
