/* ========== RESET GERAL ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ========== NAVBAR ========== */
.navbar {
  width: 100%;
  background-color: #ff9100;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 55px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
  font-size: 1rem;
}

.menu a:hover {
  color: #000;
}

/* ========== HERO ========== */
.hero {
  height: 100vh;
  width: 100%;
  background: url('../images/bg-electric.jpg') center/cover no-repeat;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  padding: 0 10%;
  margin-top: 55px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  text-align: right;
  animation: fadeIn 1.2s ease forwards;
}

.slogan {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 0 0 20px rgba(255, 145, 0, 0.6);
}

.contact-btn {
  background-color: #ff9100;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 0 15px rgba(255, 145, 0, 0.3);
}

.contact-btn:hover {
  background-color: #fff;
  color: #ff9100;
  box-shadow: 0 0 25px rgba(255, 145, 0, 0.6);
  transform: translateY(-2px);
}

/* ========== SOBRE NÓS ========== */
.sobre-nos {
  background-color: #111;
  padding: 100px 10%;
  text-align: center;
}

.sobre-nos h2 {
  font-size: 2rem;
  color: #ff9100;
  margin-bottom: 20px;
}

.sobre-nos p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.1rem;
  color: #ddd;
}

/* ========== SERVIÇOS ========== */
.servicos {
  background-color: #000;
  padding: 100px 10%;
  text-align: center;
}

.servicos h2 {
  font-size: 2rem;
  color: #ff9100;
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* BLOCO DE SERVIÇOS */
.bloco-servico {
  margin-bottom: 70px;
  text-align: center;
}

.bloco-servico h3 {
  color: #ff9100;
  font-size: 1.6rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.galeria-servico {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.galeria-servico img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  filter: brightness(0.9);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 145, 0, 0.3);
}

.galeria-servico img:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
  border-color: #ff9100;
  box-shadow: 0 0 20px rgba(255, 145, 0, 0.4);
}

/* ========== CLIENTES & PARCEIROS ========== */
.clientes {
  background-color: #111;
  padding: 100px 10%;
  text-align: center;
}

.clientes h2 {
  font-size: 2rem;
  color: #ff9100;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.clientes p {
  color: #ccc;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.grid-clientes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: start;
}

.cliente {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 145, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  transition: 0.3s;
}

.cliente img {
  width: auto;
  height: 80px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0.9);
  transition: all 0.3s ease;
}

.cliente h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-top: 10px;
  font-weight: 500;
}

.cliente:hover {
  transform: translateY(-6px);
  border-color: #ff9100;
  box-shadow: 0 0 20px rgba(255, 145, 0, 0.3);
}

.cliente:hover img {
  filter: brightness(1.2);
}

/* ========== CONTATO ========== */
.contato {
  background-color: #000;
  padding: 100px 10%;
  text-align: center;
}

.contato h2 {
  font-size: 2rem;
  color: #ff9100;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contato p {
  color: #ddd;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* ========== WHATSAPP FIXO ========== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 850px) {
  .galeria-servico img {
    width: 90%;
    height: auto;
  }

  .cliente img {
    height: 60px;
  }

  .cliente h4 {
    font-size: 0.85rem;
  }
}


