/* ======= CONFIGURAÇÕES GERAIS ======= */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #000;
}

/* ======= CABEÇALHO ======= */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.logo img {
  height: 100px;
  width: auto;
  margin-bottom: 10px;
}

.sidebar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.sidebar a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 18px;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #25D366;
}

/* ======= CONTEÚDO PRINCIPAL ======= */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  gap: 50px;
}

.container img {
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ======= INFORMAÇÕES DO PRODUTO ======= */
.info {
  max-width: 400px;
  text-align: left;
}

.info h1 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #000;
}

.info h3 {
  font-size: 20px;
  margin-top: 25px;
  color: #000;
}

.info p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* ======= BOTÕES ======= */
.buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.btn {
  background-color: #25D366;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 18px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: #1ebe5d;
}

.quantity-control input {
  width: 60px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
}

/* ======= RODAPÉ ======= */
footer {
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  border-top: 1px solid #ddd;
  margin-top: 60px;
}