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

body {
  font-family: sans-serif;
  background: #0a0e1a;
  color: #e2e8f0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  background: #060910;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #00aaff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #94a3b8;
  text-decoration: none;
}

.nav-links a:hover {
  color: #fff;
}
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 4rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 170, 255, 0.1);
  border: 1px solid rgba(0, 170, 255, 0.3);
  color:#38bdf8;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.destaque {
  color: #00aaff;
}

.hero-desc {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-botoes {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: #00aaff;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: #e2e8f0;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
}
.servicos {
  padding: 6rem 4rem;
  background: #060910;
}

.servicos-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00aaff;
  display: inline-block;
  margin-bottom: 1rem;
}

.servicos-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-desc {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
}

.card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.card p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.65;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.logo-sub {
  color: #00aaff;
  font-size: 1rem;
  font-weight: 500;
}
.produtos {
  padding: 6rem 4rem;
  background: #0a0e1a;
}

.produtos-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.produtos-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.produto-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid #00aaff;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
}

.produto-card:hover {
  border-color: rgba(0, 170, 255, 0.4);
  transform: translateY(-4px);
}

.produto-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.produto-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.produto-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.btn-produto {
  color: #00aaff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-produto:hover {
  text-decoration: underline;
}

.indisponivel {
  opacity: 0.6;
}

.em-breve {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 170, 255, 0.1);
  color: #38bdf8;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 170, 255, 0.2);
}
footer{
text-align: center;
background-color: #060910;
padding: 2rem;
}
footer h3 {
  color: #00aaff;
  margin-bottom: 0.5rem;
}

footer p {
  color: #94a3b8;
  font-size: 0.875rem;
}
.logo img {
  height: 50px;
}
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 55px;
  height: 55px;
  z-index: 999;
}

.whatsapp-btn img {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .servicos {
    padding: 4rem 1.5rem;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .produtos {
    padding: 4rem 1.5rem;
  }

  .produtos-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 2rem 1.5rem;
  }
}
.produto-carro-icon img {
  height: 60px;
  width: auto;
}