/* --- Estilo geral --- */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: black;
  color: white;
}

/* --- Navegação --- */
nav {
  background-color: black;
  padding: 10px 0;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav li {
  margin: 0 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

nav a:hover,
nav a.ativo {
  color: white;
}

/* --- Banner --- */
.banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(65%);
}

.texto-sobre-imagem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.texto-sobre-imagem h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.texto-sobre-imagem p {
  font-size: 1.2rem;
}

/* --- Título da seção --- */
.titulo-secao {
  text-align: center;
  margin-top: 50px;
  font-size: 2rem;
  color: #222;
}

/* --- Tabela de produtos --- */
.tabela-imagens {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin: 40px 0;
}

.tabela-imagens td {
  padding: 0px; /* 🔹 Reduz o espaçamento entre as imagens */
  vertical-align: top;
}

/* --- Imagens --- */
.img-produto {
  width: 400px; /* 🔹 Aumenta o tamanho das imagens */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.img-produto:hover {
  transform: scale(1.05);
}

/* --- Descrição --- */
.descricao {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 10px 0;
}

/* --- Botão WhatsApp --- */
.botao-whatsapp {
  display: inline-block;
  background-color: red;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.botao-whatsapp:hover {
  background-color: #1ebe5d;
}

/* --- Responsividade --- */
@media (max-width: 768px) {
  .tabela-imagens tr {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .img-produto {
    width: 90%; /* mantém proporcional no celular */
  }
  .texto-centralizado {
    text-align: center;
    max-width: 800px;
    margin: 40px auto;
    line-height: 1.6;
    font-size: 1.1rem;
  }
  .texto-centralizado strong {
    display: block;
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  .texto-centralizado .subtexto {
    font-size: 0.95rem; /* menor que o corpo do texto */
    color: #333;        /* opcional: cor mais suave */
    margin: 15px 0;
  }

}