@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #F3EDE3 !important;
  font-family: 'Poppins', sans-serif;
}

.site-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.form-container, .container {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.site-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  flex: 1;
}

.area-container {
  max-width: 1000px;
  margin: 30px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

h2 {
  text-align: center;
  color: #5C4033; /* Marrom escuro elegante */
}

label {
  font-weight: bold;
  display: block;
  margin-top: 15px;
  color: #4A3F35; /* Marrom médio para contraste suave */
}

input[type="text"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #CDBBA7; /* Borda marrom claro */
  border-radius: 4px;
  font-size: 14px;
  background-color: #FCFAF7;
  color: #2F2F2F;
}

textarea {
  resize: vertical;
}

.botao,
button,
input[type="submit"],
a.botao {
  margin-top: 10px;
  padding: 10px 22px;
  background-color: #A3B18A;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease-in-out;
}

.botao:hover,
button:hover,
input[type="submit"]:hover,
a.botao:hover {
  background-color: #8F9F74;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.voltar {
  margin-top: 10px;
  padding: 10px 22px;
  background-color: #D08063;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease-in-out;
}

.voltar:hover {
  background-color: #B96A52;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.mensagem {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
  color: #333;
}

.imagem-preview {
  display: block;
  margin-top: 10px;
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #FAF9F6;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

th {
  background-color: #5C4033; /* Marrom escuro */
  color: white;
}

.faixa-topo {
  height: 50px;
  background-color: #5C4033; /* Marrom escuro */
}

.imagem-topo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border: none;
  margin: 0;
}

.nav-home {
  background-color: #ffffff; /* Fundo branco */
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  margin-top: 20px; /* Espaço entre imagem e nav */
}

.nav-home a {
  background-color: #A3B18A; /* Verde oliva suave */
  color: #2F2F2F;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.nav-home a:hover {
  background-color: #8F9F74;
  transform: translateY(-2px);
}

.miniatura-produto {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #FAF9F6;
}

footer {
  width: 100%;
  background-color: #000;
  color: white;
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-link {
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link i {
  margin-right: 8px;
  font-size: 22px;
  vertical-align: middle;
}

.footer-link:hover {
  color: #ccc;
}

.btn-finalizar {
  background-color: #28a745;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-finalizar:hover {
  background-color: #218838;
}

.btn-voltar,
.btn-enviar {
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.btn-voltar {
  background-color: #6c757d;
  color: white;
  border: none;
}

.btn-voltar:hover {
  background-color: #495057;
}

.btn-enviar {
  background-color: #007bff;
  color: white;
  border: none;
}

.btn-enviar:hover {
  background-color: #0056b3;
}

.acoes-pedido {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.botao-simples {
  all: unset;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none; /* garante sem fundo mesmo em alguns navegadores */
}

.botao-simples:hover {
  background: none !important; /* remove fundo verde herdado do navegador */
  text-decoration: underline;
}

.link-acao {
  color: #333;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-acao:hover {
  text-decoration: underline;
}

.form-link {
  margin: 0;
}