
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #5B2C10;
  color: #FCDAC3;
}

h1, h2, h3 {
  color: #FCDAC3;
}

header.hero {
  background: url('image.jpg') center/cover no-repeat fixed;
  text-align: center;
  position: relative;
  height: 550px; /* <-- ESSENCIAL para limitar o overlay */
}


header.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8); /* escurece com transparência */
  z-index: 1;
}


.overlay {
  z-index: 3;
  padding: 15px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.produtos {
  background-color: #5B2C10; /* mantém o fundo marrom */
  position: relative; /* ou remova completamente se não for necessário */
  padding: 20px 20px;
}

.servicos{
  background-color: #5B2C10; /* mantém o fundo marrom */
  position: relative; /* ou remova completamente se não for necessário */
  padding: 20px 20px;
}

.logo {
  width: 350px;
  margin-bottom: 20px;
}

.cidade {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.whatsapp-btn {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
}

.whatsapp-btn2 {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}

section {
  padding: 60px 20px;
  text-align: center;
}

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

.produto, .servico {
  background-color: #fff;
  color: #5B2C10;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.produto img, .servico img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
}

.produto h3, .servico h3 {
  margin-top: 15px;
  color: #5B2C10;
}

.produto p {
  font-size: 0.95rem;
  margin: 10px 0;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input, form button {
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
}

form input {
  background-color: #fff;
  color: #333;
}

form textarea {
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background-color: #fff;
  color: #333;
  resize: vertical; /* permite redimensionar pra cima/baixo */
}


form button {
  background-color: #FCDAC3;
  color: #5B2C10;
  cursor: pointer;
  font-weight: bold;
}

.mapa {
  margin-top: 40px;
}

.info-contato {
  margin-top: 20px;
  font-size: 1.1rem;
}
