* { box-sizing: border-box; }
body { 
  background-color: #f5f5f5; 
  font-family: 'Inter', sans-serif; 
  margin: 0; 
  padding: 0; 
  line-height: 1,6; 
  color: #333; }
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 30px;
  background-color: #222;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  margin-bottom: 500px;
}


.logo img {
  height: 50px;
  width: auto;
}

/* Navegação */
nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #FFF;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #b88a44;
}

/* Responsivo */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: center;
  }

  .nav {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav a {
    padding: 10px 0;
    width: 100%;
    border-top: 1px solid #eee;
  }
}
section { padding: 3rem 2rem; max-width: 1000px; margin: auto; }
h1, h2 { color: #111; margin-bottom: 2rem; }


form { display: flex; flex-direction: column; gap: 0.5rem; }
form input, form textarea { padding: 0.75rem; font-size: 1rem; border: 1px solid #ccc; border-radius: 5px; }
form button { padding: 0.75rem 1rem; background: #222; color: #fff; border: none; cursor: pointer; border-radius: 5px; font-size: 1rem; }

.whatsapp-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  font-weight: bold;
}
.whatsapp-flutuante i {
  font-size: 1.8rem;
}
.carouselteste {
  margin-top: 40px;
}

@media (max-width: 600px) {
  header { padding: 1rem; }
  section { padding: 2rem 1rem; }
  .carouselteste {
    margin-top: 80px;
  }
  .redes-sociais a { font-size: 1.2rem; padding: 0.6rem; }
  .whatsapp-flutuante {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }
  .whatsapp-flutuante i {
    font-size: 1.5rem;
  }
}
@media (max-width: 450px) {
  .carouselteste {
    margin-top: 100px;
  }
}

/* Estrutura base */
.containerfooter {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.space-between {
  justify-content: space-between;
}
.text-center {
  text-align: center;
}
.text-light {
  color: #fff;
}
.bg-darkcss {
  background-color: #222;
}
.small {
  font-size: 0.8rem;
}

/* Footer específico */
.footer {
  padding: 40px 20px;
}
.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}
.footer-logo {
  max-height: 50px;
}
.footer-title {
  margin-top: 0;
}
.footer-text {
  line-height: 1.6;
}
/*catalogo */

.filtro {
  text-align: center;
  margin-bottom: 5rem;
}
select {
  padding: 0.5rem;
  font-size: 1rem;
}
.catalogo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.produto {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  position: relative;
}
.produto img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.produto img:hover {
  transform: scale(1.05);
}
.produto h2 {
  font-size: 1.1rem;
  margin: 0.8rem 0 0.5rem;
}
.preco {
  color: #1f3b99;
  font-weight: bold;
  margin: 0.5rem 0;
}
.descricao {
  font-size: 0.9rem;
  color: #333;
}
.zoom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.zoom-modal img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
}
/*pagina sobre*/
.sobre-fabrica {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;

}

.titulo-secao {
  font-size: 2rem;
  color: #000000;
  border-bottom: 2px solid #000000;
  padding-bottom: 8px;
}

.subtitulo {
  font-size: 1.5rem;
  color: #000000;
  margin-top: 30px;
}

.texto {
  margin: 12px 0;
  line-height: 1.6;
}

.citacao {
  border-left: 4px solid #ccc;
  padding: 12px 20px;
  margin: 16px 0;
  background-color: #f9f9f9;
  font-style: italic;
  color: #555;
}

@media (max-width: 600px) {
  .sobre-fabrica {
    margin: 20px 10px;
    padding: 15px;
  }

  .titulo-secao {
    font-size: 1.5rem;
  }

  .subtitulo {
    font-size: 1.2rem;
  }
}