/* Container principal */
main {
  max-width: 1200px;
  margin: 160px auto 60px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}

/* Título */
main h2 {
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #222;
}

/* Card de outdoor */
.orcamento-card {
  border: 1px solid #ddd;
  border-left: 4px solid #3498db;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  background: #fafafa;
}

.orcamento-card h4 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #222;
}

.orcamento-card p {
  margin: 4px 0;
  font-size: 14px;
  color: #333;
}

.orcamento-card .latlon {
  font-size: 13px;
  color: #888;
  font-style: italic;
}

.orcamento-card button {
  margin-top: 10px;
  padding: 6px 12px;
  background-color: #e74c3c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.orcamento-card button:hover {
  background-color: #c0392b;
}

/* Formulário */
.form-orcamento {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.form-orcamento input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.form-orcamento button {
  padding: 12px;
  font-size: 14px;
  font-weight: bold;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-orcamento button:hover {
  background-color: #2980b9;
}
.botao-carrinho {
  background-color: #b30000;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease;
  display: inline-block;
  width: 100%;
  max-width: 250px;
  text-align: center;
}
/* Container do formulário */
.form-orcamento {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* Campos de input */
.form-orcamento input {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.form-orcamento input:focus {
  border-color: #3498db;
  outline: none;
}

/* Botões */
.form-orcamento button {
  padding: 14px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Botão azul padrão */
.form-orcamento button[type="submit"],
.form-orcamento button.enviar-email {
  background-color: #3498db;
}

.form-orcamento button[type="submit"]:hover,
.form-orcamento button.enviar-email:hover {
  background-color: #2980b9;
}

/* Botão WhatsApp */
.form-orcamento button.enviar-whatsapp {
  background-color: #25D366;
}

.form-orcamento button.enviar-whatsapp:hover {
  background-color: #1ebe57;
}