body {
  margin: 0;
  font-family: Arial, sans-serif;
}
.menu {
  position: fixed;
  top: 0;
  width: 100%;
  background: #333;
  color: #fff;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
.container {
  display: flex;
  margin-top: 15px;
  padding: 1em;
  gap: 1em;
}
.col {
  padding: 0.5em;
  background: #f4f4f4;
}
.artigos { width: 25%;}
.artigo-selecionado { width: 60%;}
.produtos { width: 15%; }
.card-artigo, .card-produto {
  background: white;
  padding: 0.5em;
  margin-bottom: 0.5em;
  border: 1px solid #ccc;
}

.artigos li{
  margin-bottom: 30px;
  padding-left: 20px;
  list-style: none;
}

#conteudo{
  margin-right: 15px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .artigos, .artigo-selecionado, .produtos {
    width: 100%;
  }
  #menu-toggle {
    display: block;
  }
}

/* Menu e header */
/* Estilos gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: Arial, sans-serif;
  height: 100%;
}

/* Navbar fixa no topo */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #222;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo img {
  width: 30px;
  height: 30px;
}

/* Botão toggle escondido inicialmente */
/* Estilos gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: Arial, sans-serif;
  height: 100%;
}

/* Navbar fixa no topo */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #222;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Botão toggle escondido inicialmente */
.menu-toggle {
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none;
}

/* Links do menu */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Header */
.background {
  background-image: url('bg_hor.png');
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  height: 100vh;
  padding-top: 130px; /* Ajuste para compensar o menu fixo */
}

/* Conteúdo do header */
.content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn-contact {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
}
.img-produto{
  width: 90%;
  height: 100px;
}

/* ---------------- RESPONSIVO ---------------- */

@media (max-width: 768px), (orientation: portrait) {

  .img-produto{
    width: 250px;
    height: 150px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #222;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin-left: 20px;
    margin-bottom: 10px;
  }

  .background {
    background-image: url('bg_ver.png');
    height: 100vh;
    padding-top: 130px;
  }

  .content h1 {
    font-size: 1.2rem;
  }

  .btn-contact {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}
