/* === Reset básico === */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

/* === Container principal === */
main {
  max-width: 1200px;
  margin: 160px auto 60px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* === Título do ponto === */
.titulo-detalhe {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #000;
}

/* === Flex entre imagem e informações === */
.detalhe-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}

/* === Imagem principal === */
.img-bloco {
  flex: 1 1 500px;
}

.img-bloco img.imagem-destaque {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.img-note {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
}

/* === Informações === */
.info-bloco {
  flex: 1 1 350px;
  font-size: 15px;
}

.info-bloco p {
  margin-bottom: 8px;
  line-height: 1.4;
}

.info-bloco strong {
  color: #000;
}

.info-bloco div {
  margin-top: 10px;
}

/* === Botão vermelho === */
.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;
}

.botao-carrinho:hover {
  background-color: #900000;
}

/* === Bloco de contato === */
.contato-box {
  background-color: #f1f1f1;
  padding: 25px;
  margin-top: 40px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid #ddd;
}

.contato-box h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

.contato-box p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  color: #111;
  font-weight: 600;
}

/* Ícones responsivos */
.contato-box img {
  width: 20px;
  height: 20px;
}
.link-orcamento {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #b30000;
  text-decoration: none;
  font-weight: bold;
}
.link-orcamento:hover {
  text-decoration: underline;
}