#imgdestaque img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.opcoes-variacoes {
  display: flex;
  gap: 24px;
  align-items: center;
}

.opcao-cor {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  border: 1px solid #ccc;
  color: #999;
  background-color: #fff;
  transition: all 0.3s ease;
}

.opcao-cor .bolinha {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  /*background: #e0e0e0;*/
  margin-right: 12px;
}

.opcao-cor .bolinha.cor-label-branco { background: #fff; border: 1px solid #ccc; }
.opcao-cor .bolinha.cor-label-cinza  { background: #999 !important; }
.opcao-cor .bolinha.cor-label-preto { background: #000; }
.opcao-cor .bolinha.cor-label-natural { 
    background-image: url('https://alutim.com.br/wp-content/uploads/2025/04/natural.jpg');
	background-size: cover;
	background-position: center;
}
.opcao-cor .bolinha.cor-label-fosco  { 
    background-image: url('https://alutim.com.br/wp-content/uploads/2025/03/16efe47cd4b8a0fa411c864ed5d68ee1.jpg');
	background-size: cover;
	background-position: center;
}

.opcao-cor.ativo {
  border-color: #f26c2a;
  color: #000;
}

.opcao-cor.ativo .bolinha {
  outline: 4px solid #f26c2a;
}


@media screen and (max-width: 768px) {
  .opcoes-variacoes {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    margin-top: 0px !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
  }
}