

/* ================= FONTE GLOBAL ================= */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #121212;
  color: #f1f1f1;
  font-size: 16px;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.typing-h4 {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;

  border-right: 2px solid #e7251d;
  padding-right: 5px;

  font-size: 1.1rem;
  font-weight: 400;
  color: #c7b0b0;
  font-family: 'Poppins', sans-serif;

  /* ESSENCIAL para a animação funcionar */
  width: 0;

  animation:
    typing-h4 5s steps(90, end) forwards,
    blink-h4 0.8s step-end infinite;
}
/* ===== Texto animado (typewriter) ===== */
/* ===== Texto animado estilo TERMINAL ===== */
/* ===== Texto animado estilo TERMINAL com efeito eletricidade ===== */
#typing-h4 {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 25px;

  text-transform: uppercase;
  letter-spacing: 2px;

  position: relative;
  display: inline-block;

  text-shadow:
    0 0 5px #ff0000,
    0 0 10px #ff0000,
    0 0 20px #ff0000,
    0 0 40px rgba(255, 0, 0, 0.8);

  animation: electricFlicker 0.12s infinite alternate;
}

/* Cursor piscando */
#typing-h4::after {
  content: "|";
  margin-left: 6px;
  animation: blinkCursor 1s infinite;
}

/* Piscar elétrico */
@keyframes electricFlicker {
  0% {
    text-shadow:
      0 0 4px #e50c63,
      0 0 8px #ce3805,
      0 0 18px #d46200;
    transform: translateX(0);
  }
  50% {
    text-shadow:
      0 0 6px #ff1a1a,
      0 0 14px #ff0000,
      0 0 28px #e2e2e2,
      0 0 45px #FF5722;
    transform: translateX(0.5px);
  }
  100% {
    text-shadow:
      0 0 3px #ff0000,
      0 0 10px #882353,
      0 0 20px #ff0000;
    transform: translateX(-0.5px);
  }
}

@keyframes blinkCursor {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}



/* CABEÇALHO */

    /* 
    🔽 CAMADA DE COR (DESATIVADA)
    Para ativar, remova os comentários e ajuste a opacidade
    */
    .header {
  background:linear-gradient(
      rgb(0 0 0 / 80%),  
      rgb(0 0 0 / 80%)
    ),

    url('cabecalho.jpg') center/cover no-repeat;

  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 3px rgb(0 0 0 / 2%);
  position: relative;
}


.logo img {
  height: 100px;
  position: absolute;
  top: 10px;
  left: 150px;
}

/* MENU */
.menu {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.menu a {
  color: #ffffff94;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  position: relative;
}

.menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #e7251d;
  transition: width 0.3s;
}

.menu a:hover::after {
  width: 100%;
}
.hero {
  background:
    linear-gradient(
      145deg,
      rgb(0 0 0  / 90%),
      rgb(16 15 15 / 76%)
    ),
    url("carrobmw.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  text-align: center;
  padding: 3rem 1rem;
}






/* ================= EFEITO AO PASSAR O MOUSE ================= */
.btn-primary:hover {

  /* 🎨 Cor ao passar o mouse */
  background-color: #c11c15;
  /* Altere para combinar com a cor principal */

  /* 🔎 Pequeno efeito de destaque */
  transform: scale(1.05);
}


/* SERVIÇOS */
.services {
  background-color: #000000;;
  padding: 3rem 1rem;
}

.services h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #a4a4a4d4;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-item {
  background-color: #000000;
  color: #ffe8e8;
  padding: 2rem 1rem;
  border-radius: 8px;
  text-align: center;
  
  /* Neon vermelho */
  box-shadow: 
    0 0 5px #ff0000,
    0 0 15px #ff0000,
    0 0 30px #ff0000,
    0 10px 40px rgba(255, 0, 0, 0.6);
}


.service-item h3 {
  margin-bottom: 1rem;
}

/* SOBRE */
.about {
  background-color:#000000 ;
  text-align: center;
  padding: 3rem 1rem;
}

.about h2 {
  margin-bottom: 1rem;
  color: #a4a4a4d4;
}

.about p {
  font-size: 1.1rem;
  color: #ccc;
}

/* CONTATO */
.contact {
  background-color: #141414;
  padding: 3rem 1rem;
}

.contact h2 {
  text-align: center;
  color: #e7251d;
  margin-bottom: 2rem;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 10px;
  max-width: 700px;
  margin: auto;
}

.contact input,
.contact select,
.contact textarea {
  padding: 0.8rem;
  border-radius: 5px;
  border: none;
  background: #fff;
  color: #000;
}

.contact button {
  background-color: #e7251d;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact button:hover {
  background-color: #c11c15;
}

/* RODAPÉ */
.footer {
  background-color: #0f0f0f;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: #aaa;
}

/* BOTÃO WHATSAPP */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.whatsapp-button img {
  width: 28px;
  height: 28px;
}

/* ANIMAÇÃO DE PULSO */
.pulse-ring {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.4);
  animation: pulse 1.5s infinite;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* RESPONSIVIDADE EXTRA */
@media (max-width: 400px) {
  .btn-primary {
    padding: 0.75rem 1.2rem;
    font-size: 1rem;
  }

  .logo img {
    left: 10px;
    height: 70px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= MARCAS ESPECIALISTAS ================= */

.brands {
  padding: 80px 20px;
  background: #0f0f0f;
  text-align: center;
}

.brands h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 10px;
}

.brands-subtitle {
  color: #bbb;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
}

.brand-item {
  background: #151515;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.25);
}

.brand-item img {
  max-width: 100px;
  height: auto;
  margin-bottom: 10px;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.brand-item:hover img {
  filter: grayscale(0%);
}

.brand-item span {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ================= FIM MARCAS ================= */
/* ================= LOCALIZAÇÃO ================= */

.location {
  padding: 80px 20px;
  background: #0f0f0f;
}

.location h2 {
  text-align: center;
  margin-bottom: 40px;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.location-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.location-info p {
  line-height: 1.7;
  margin-bottom: 20px;
  color: #d0d0d0;
}

.location-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .location-content {
    grid-template-columns: 1fr;
  }

  .location-map iframe {
    height: 260px;
  }
}

