/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Orbitron', sans-serif;
  background: #0e0e0e;
  color: #ffffff;
  line-height: 1.6;
}

section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

h1, h2, h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn-primary {
  background: #b400fa;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: #8e00cc;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #1a1a1a, #141414);
  padding: 80px 20px;
  gap: 40px;
}
.hero-content {
  flex: 1;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.hero-image {
  flex: 1;
  text-align: center;
}
.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Features */
.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  color: #bbb;
  gap: 20px;
}
.feature {
  background: #1c1c1c;
  padding: 20px;
  border-radius: 10px;
  min-width: 150px;
  flex: 1;
}

/* Categories */
.category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.category {
  background: #1d1d1d;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s;
}
.category:hover {
  background: #2a2a2a;
  transform: scale(1.05);
}

/* Products */
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* Brands */
.brands .brand-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.brand-logos img {
  max-height: 50px;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all 0.3s;
}
.brand-logos img:hover {
  filter: none;
  opacity: 1;
}

/* Blog */
.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.blog-posts .post {
  background: #1b1b1b;
  padding: 20px;
  border-radius: 8px;
  transition: background 0.3s;
}
.blog-posts .post:hover {
  background: #272727;
}
.blog-posts .post a {
  color: #b400fa;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}
