body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #111;
  border-bottom: 2px solid #00ffd5;
}

.logo img {
  height: 50px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #00ffd5;
  text-decoration: none;
  font-weight: bold;
}

.hero-section {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(to right, #000000, #0f0f0f);
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #00ffd5;
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #00bfa6;
}

.products-section {
  padding: 3rem 1rem;
  max-width: 1100px;
  margin: auto;
}

.product-card {
  margin-bottom: 3rem;
  padding: 2rem;
  border: 1px solid #333;
  border-radius: 15px;
  background-color: #1a1a1a;
}

.product-card video {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.gallery {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.gallery img {
  width: 48%;
  border-radius: 8px;
}

.contact-section {
  text-align: center;
  padding: 2rem;
  background: #111;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #0a0a0a;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
}
