body {
      font-family: 'Albert Sans', sans-serif;
      margin: 0;
      padding: 0;
      background: #ffffff;
      color: #392617;
    }

    .section-title {
      text-align: center;
      font-size: 3.5rem;
      color: #ddc7a4;
      margin-bottom: 20px;
    }

    .divider {
      display: block;
      margin: -30px auto 40px;
      max-width: 250px;
    }


.produto-destaque {
    background-color: var(--vermelho-escuro);
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 40px 20px;
    min-height: 30vh;
    
}

.produto-destaque h2 {
    margin-top: 20px;
    font-size: 3.5rem; /* visibilidade */
    margin-bottom: 10px;
    font-weight: 600;
    color: #ddc7a4; /* garante contraste */

}


.produto-conteudo {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5%;
  gap: 20px;
  

}

.produto-imagem {
  flex: 1 1 300px;
  max-width: 400px;
}

.produto-imagem img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}



.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.produto-conteudo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
}

.produto-video {
  flex: 1 1 400px;
}

.produto-detalhes {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.produto-detalhes h2 {
  color: #7e0000;
  font-size: 1.8rem;
}

.produto-detalhes h3 {
  margin-top: 10px;
}

.produto-botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn-vermelho {
  background: #7e0000;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-vermelho:hover {
  background: #a00000;
}

.compartilhar {
  color: #7e0000;
  text-decoration: none;
}

.compartilhar:hover {
  text-decoration: underline;
}

.produto-opcoes {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.duracao button,
.quantidade button {
  background: #e0e0e0;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 4px;
}

.duracao button:hover,
.quantidade button:hover {
  background: #cccccc;
}

.quantidade span {
  display: inline-block;
  min-width: 20px;
  text-align: center;
}

.produto-preco-compra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.produto-preco-compra h3 {
  font-size: 1.5rem;
  color: #5a4a42;
}

.btn-comprar {
  background: #7e0000;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.btn-comprar:hover {
  background: #a00000;
}

@media (max-width: 768px) {
  .produto-conteudo {
    flex-direction: column;
  }
  .produto-preco-compra {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}