* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background-color: #0e0e10;
  color: #fff;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #121212;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #00d9ff;
}

.logo span {
  color: #ff007f;
}

.nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav a:hover {
  color: #00d9ff;
}

.menu-toggle {
  display: none;
  background: none;
  color: white;
  border: none;
  font-size: 26px;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
              url('https://wallpapers.com/images/hd/gaming-setup-dark-room-lights-7y6z0f07n6eh39he.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.8em;
  color: #00d9ff;
}

.hero p {
  margin-top: 15px;
  font-size: 1.2em;
  max-width: 700px;
}

.btn {
  display: inline-block;
  background: #ff007f;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 25px;
  transition: 0.3s;
}

.btn:hover {
  background: #00d9ff;
}

/* SERVIÇOS */
.servicos {
  padding: 80px 60px;
  text-align: center;
}

.servicos h2 {
  color: #00d9ff;
  margin-bottom: 40px;
  font-size: 2em;
}

.servico-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.servico-card {
  background: #181818;
  border-radius: 10px;
  padding: 30px;
  width: 280px;
  transition: 0.3s;
}

.servico-card:hover {
  transform: translateY(-5px);
  background: #222;
}

.servico-card img {
  width: 80px;
  margin-bottom: 15px;
}

/* SOBRE */
.sobre {
  background: #101010;
  padding: 80px 60px;
  text-align: center;
}

.sobre h2 {
  color: #ff007f;
  margin-bottom: 20px;
}

/* CONTATO */
.contato {
  padding: 80px 60px;
  text-align: center;
}

.form-contato {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-contato input, .form-contato textarea {
  padding: 12px;
  border: none;
  border-radius: 5px;
  background: #1a1a1a;
  color: #fff;
}

.form-contato button {
  background: #00d9ff;
  border: none;
  padding: 14px;
  border-radius: 5px;
  color: #000;
  font-weight: 700;
  cursor: pointer;
}

.form-contato button:hover {
  background: #ff007f;
  color: white;
}

/* FOOTER */
.footer {
  background: #0a0a0a;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
  color: #999;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .nav ul {
    display: none;
    flex-direction: column;
    background: #121212;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 15px;
  }

  .nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* MINI PROJETORES */
.mini-projetores {
  padding: 80px 60px;
  background: #0f0f10;
  text-align: center;
}

.mini-projetores h2 {
  color: #00d9ff;
  margin-bottom: 40px;
  font-size: 2em;
}

.projetores-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.projetor-item {
  background: #181818;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  width: 260px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projetor-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projetor-item:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .projetor-item {
    width: 90%;
    height: auto;
  }
}
/* CONSOLES */
.consoles {
  padding: 80px 60px;
  background: #101010;
  text-align: center;
}

.consoles h2 {
  color: #ff007f;
  margin-bottom: 40px;
  font-size: 2em;
}

.consoles-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.console-item {
  background: #181818;
  border-radius: 10px;
  padding: 20px;
  width: 220px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s;
}

.console-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.console-item:hover {
  transform: scale(1.05);
  background: #222;
}

@media (max-width: 768px) {
  .console-item {
    width: 80%;
    height: auto;
  }
}
/* FOOTER */
.footer {
  background: #0a0a0a;
  color: #ddd;
  padding: 50px 60px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  border-bottom: 1px solid #222;
  padding-bottom: 30px;
}

.footer-info h3 {
  color: #00d9ff;
  margin-bottom: 10px;
}

.footer-info p {
  max-width: 350px;
  font-size: 0.95em;
  line-height: 1.5em;
}

.footer-contato h4 {
  color: #ff007f;
  margin-bottom: 10px;
}

.footer-contato ul {
  list-style: none;
  padding: 0;
}

.footer-contato li {
  margin-bottom: 8px;
  font-size: 15px;
}

.footer-contato a {
  color: #00d9ff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contato a:hover {
  color: #ff007f;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85em;
  color: #888;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
.hero {
  background: url('IMAGENS/fundo.jpg') center/cover no-repeat;
  padding: 120px 20px;
  color: #fff;
  text-align: center;
}