body {
  font-family: system-ui, sans-serif;
  background-color: #111;
  color: #fff;
  margin: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3vw;
  background-color: #000;
  margin-top: -5rem;
}

header img {
  width: 200px;
    max-width: 60vw;
  margin-left: -3rem;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

nav a {
  color: #e7e7e7;
  text-decoration: none;
  margin: 0 2rem;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  transition: 0.3s ease-in-out;
}

nav a:hover {
  color: #df5b16;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

/* Sign-in Button */
.btn-secondary {
  background-color: #df5b16;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  margin-top: 0.5rem;
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: white;
  color: #df5b16;
}


.produtos-header {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.produtos-header h1 {
  color: #df5b16;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

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

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

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.produto-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.produto-card:hover {
  transform: translateY(-5px);
}

.produto-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.produto-card h3 {
  color: #df5b16;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.produto-card p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.btn-produto {
  background-color: #df5b16;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-produto:hover {
  background-color: white;
  color: #df5b16;
}

.footer-bottom {
  text-align: center;
  background-color: #050505;
  padding: 1rem;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid #222;
}

/* ====================== RESPONSIVIDADE ====================== */
@media screen and (max-width: 1020px) {
  /* Mostra o ícone do menu */
  .menu-toggle {
    display: block;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    z-index: 1000;
    margin-top: -3px;
  }

  /* Esconde o menu por padrão */
  nav {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 5rem;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    text-align: center;
    border-radius: 8px;
  }

  /* Mostra o menu quando ativo */
  nav.active {
    display: flex;
  }

  /* Header em coluna no mobile */
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    position: relative;
    margin-top: -6rem;
  }

  /* Logo menor */
  header img {
    width: 200px;
    margin-left: -3rem;
  }

  /* Botões e textos mais compactos */
  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-secondary {
    display: none ;


  .content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .description {
    font-size: 1rem;
  }

  /* Seções de “sobre” */
  .sobre-mvv .blocos {
    flex-direction: column;
  }

  .sobre-header h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .sobre-header p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1020px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col ul li {
    margin-bottom: 0.75rem;
  }

  .servicos h2 {
    font-size: 2rem;
  }

  .servicos .intro {
    font-size: 1rem;
  }

  .servico-card {
    flex: 0 0 100%;
  }
  .servico-card img {
    height: 15rem;
  }
}
}