
/**
 * NOVATEC.PC.SOLUTION
 * Tema Cyberpunk Industrial – versão limpa e estável
 */

/* =====================
   VARIÁVEIS
===================== */
:root {
  --primaria: #00ff00;
  --primaria-hover: #00cc00;
  --fundo: #0a0e27;
  --fundo-card: #1a1f3a;
  --texto: #ffffff;
  --texto-muted: #8b92a9;
  --erro: #ff3333;
  --sucesso: #00ff00;
  --border: #2a3f5f;
  --shadow: 0 0 20px rgba(0,255,0,0.15);
}

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

html, body {
  font-family: "Courier New", monospace;
  background: var(--fundo);
  color: var(--texto);
  overflow-x: hidden;
}

/* =====================
   LAYOUT
===================== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =====================
   HEADER
===================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, rgba(0,255,0,0.05), rgba(0,0,0,0.4));
  border-bottom: 2px solid var(--primaria);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: bold;
  color: var(--primaria);
  text-decoration: none;
  letter-spacing: 2px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primaria);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: var(--texto);
  font-size: 12px;
  text-transform: uppercase;
}

nav a:hover,
nav a.ativo {
  color: var(--primaria);
}

/* =====================
   BOTÕES
===================== */
.btn {
  padding: 12px 28px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.btn-primary {
  background: var(--primaria);
  color: var(--fundo);
}

.btn-primary:hover {
  background: var(--primaria-hover);
  box-shadow: var(--shadow);
}

/* =====================
   HERO
===================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
}

.hero img {
  max-width: 100%;
  height: auto;
}

/* =====================
   SEÇÕES
===================== */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 48px;
  margin-bottom: 40px;
}

.section-title .destaque {
  color: var(--primaria);
}

/* =====================
   LOJA
===================== */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 30px;
}

.produto-card {
  background: var(--fundo-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
}

.produto-card:hover {
  border-color: var(--primaria);
  box-shadow: var(--shadow);
}

.produto-imagem {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.produto-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.produto-info {
  padding: 20px;
}

.produto-nome {
  font-weight: bold;
  margin-bottom: 10px;
}

.produto-preco {
  color: var(--primaria);
  font-weight: bold;
}

/* =====================
   SERVIÇOS
===================== */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.servico-card {
  background: var(--fundo-card);
  border: 1px solid var(--border);
  padding: 40px;
  text-align: center;
  border-radius: 8px;
}

.servico-card img,
.servico-card i {
  font-size: 64px;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

/* =====================
   FOOTER
===================== */
footer {
  border-top: 2px solid var(--primaria);
  padding: 40px 0;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 40px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: var(--texto-muted);
}

/* =====================
   RESPONSIVO
===================== */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .section-title {
    font-size: 32px;
  }
}
