* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff8f0;
}

header {
  background-color: #aa6115;
  color: white;
  padding: 5px 0px 5px 8%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  max-height: 120px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 20px;
}

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

.hero {
  background-color: #ffcc99;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 2.5em;
  color: #a65300;
}

.hero p {
  font-size: 1.2em;
  margin-top: 10px;
}

section {
  padding: 40px 5%;
}

.sobre, .produtos, .contato {
  margin: 0 40px;
}

.produtos .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.produto {
  background-color: #fff3e0;
  padding: 20px;
  border: 1px solid #e0a96d;
  border-radius: 20px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

button {
  padding: 10px;
  background-color: #aa6115;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #aa6115;
}

footer {
  background-color: #aa6115;
  color: white;
  text-align: center;
  padding: 20px;
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}



.banner {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  display: flex;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.produto img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.filtro-categorias {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filtro-categorias a {
  background-color: #aa6115;
  color: #ffff94;
  text-decoration: none;
  padding: 0px 10px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.3s;
}

.filtro-categorias a:hover {
  background-color: #80480f;
}

.whatsapp-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.2s;
}

.whatsapp-icon img {
  width: 24px;
  height: 24px;
  filter: invert(1); /* Deixa o ícone branco */
}

.whatsapp-icon:hover {
  opacity: 0.8;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.2s, background 0.3s;
}

.whatsapp-float img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.whatsapp-float:hover {
  background-color: #49d87b;
  transform: scale(1.05);
}

.whats-botao {
  display: inline-block;
  background-color: #1ebe57; /* verde claro elegante */
  color: white;
  padding: 5px 5px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 12px;
}

.whats-botao:hover {
  background-color: #00994c; /* cor mais clara no hover */
}

.pro {
  color: #aa6115;
  text-decoration: none;
  font-weight: bold;
}

.pro:hover {
  color: #8a4b07;
}

.btn-topo {
  position: fixed;
  bottom: 75px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #aa6115;
  color: white;
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;           /* invisível por padrão */
  visibility: hidden;   /* garante que não clique */
  transition: opacity .3s ease, visibility .3s ease;
}

.btn-topo.mostrar {
  opacity: 0.8;         /* visível quando scrolar */
  visibility: visible;
}

.btn-topo:hover { opacity: 1; }



.contato-info p{
  margin:4px 0;
  font-size:0.95rem;
}
.contato-info a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contato-info a:hover {
  color: #000000;
  text-decoration: none;
}



.modal{position:fixed;inset:0;display:none;background:rgba(0,0,0,.6);align-items:center;justify-content:center;z-index:1000}
.modal[aria-hidden="false"]{display:flex}
.modal-conteudo{background:#fff;padding:2rem;max-width:450px;width:90%;border-radius:8px;text-align:center}
.modal-conteudo img{max-width:90%;height:auto;margin-bottom:1rem}
.modal .fechar{position:absolute;top:8px;right:12px;font-size:2rem;background:none;border:none;cursor:pointer;line-height:1}