.produto-page {
  padding-top: 120px;
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;

}

/* HERO */

.produto-hero {
  display: grid;
 grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 50px;
  align-items: start;
  min-height: auto;
  height: auto;
}

/* TEXTO */

.produto-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.breadcrumb {
  margin-top: 0px;
  font-size: 12px;
  color: #888;
}

.produto-info h1 {
  
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 4px;  

}

.produto-info h1 {
  color: #79472A !important;
 
}

.produto-info h2 {
  font-size: 18px;
  color: #ad7629;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.produto-info p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  color: #555;
}

/* DIFERENCIAIS */

.icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;}

.diferenciais-lista h3 {
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
   font-weight: 400;
   color: #ad7629;
}

.diferenciais-lista ul {
  padding-left: 18px;
  list-style: none; 
  padding: 0;
  margin: 0;
}

.diferenciais-lista li {
  font-size: 13px;
  margin-bottom: 6px;
  display: flex;           
  align-items: center;    
  gap: 10px;               
  margin-bottom: 10px;
}

/* BOTÃO */

.btn-orcamento {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;

  margin-top: 30px;
  margin-bottom: 30px;

  padding: 14px 22px; /* reduz largura */

  background:  #e79058;
  color: #fff;

  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;

  border-radius: 2px;

  transition: all 0.3s ease;
 
}

.btn-orcamento:hover {
  background: #79472a;
  transform: translateY(-2px);
}

/* GALERIA */
.produto-galeria {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: calc(100vh - 160px);
}

.imagem-principal-box {
  width: 100%;
  flex: 1;
  overflow: hidden;
}

.imagem-principal-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.miniaturas {
  display: flex;
  gap: 10px;
  padding-top: 15px;
  flex-shrink: 0;
  overflow-x: auto;
}

.thumb {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.thumb img {
  width: 280px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.6;
  transition: 0.3s;
   box-sizing: border-box;
}

.thumb:hover img,
.thumb.ativa img {
  opacity: 1;
  border: 2px solid #b9853a;
}

/* CORES */


.titulo-cores {
  text-align: center;

}

.cores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
}

.cor-item {
  text-align: center;
  width: 70px;
  flex: 0 0 70px;
  
}


.amostra {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 9999px;
  overflow: hidden;
  margin: 0 auto 7px;
  border: 1px solid #e5e5e5!important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.grupo-cores-card {
  margin-top: 25px;
 
  border: 1px solid rgba(121, 71, 42, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.35);
}

.grupo-cores-card h2 {
  margin-bottom: 18px;
  margin-top: 18px;
  margin-left: 20px;
}


.cor-item p {
  font-size: 12px;
  line-height: 1.15;
  color: #79472a;
   margin-top: 5px;
  align-items: center;
line-height: 1.2;
} 



.amostra-dupla {
  width: 95px;
  height: 70px;
  position: relative;
  margin: 0 auto 12px;
}

.amostra-dupla .amostra {
  position: absolute;
  top: 0;
  margin: 0;
}

.amostra-dupla .amostra:first-child {
  left: 0;
}

.amostra-dupla .amostra:last-child {
  right: 0;
}

/* DETALHES */

.detalhes-produto {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #d9d2cb !important;
  color: #79472A;
}

.detalhes-produto::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #d9d2cb 10%,
    #d9d2cb 90%,
    transparent
  );}

.detalhes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.detalhes-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
   cursor: pointer;
  transition: transform 0.3s ease;
}


.detalhes-grid img:hover {
  transform: scale(1.03);
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 20px 110px;
}

.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.22);
  border: none;
  color: white;
  font-size: 58px;
  width: 76px;
  height: 76px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 100000;
}

.seta-esq {
  left: 35px;
}

.seta-dir {
  right: 35px;
}

.fechar-lightbox {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 48px;
  cursor: pointer;
  z-index: 100000;
}

/* =========================================
   TABLET GRANDE
========================================= */

@media (max-width: 1200px) {

  .produto-hero {
    grid-template-columns: 350px 1fr;
    gap: 30px;
  }

  .thumb img {
    width: 180px;
    height: 90px;
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

  .produto-page {
    padding-left: 25px;
    padding-right: 25px;
  }

  .produto-hero {
    grid-template-columns: 1fr;
  }

  .produto-info {
    order: 2;
  }

  .produto-galeria {
    order: 1;
  }

  .imagem-principal-box {
    height: auto;
  }

  .detalhes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =========================================
   CELULAR
========================================= */

@media (max-width: 768px) {

  .produto-page {
    padding-top: 100px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .produto-info h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .cores {
    justify-content: center;
  }

  .miniaturas {
    overflow-x: auto;
    padding-top: 15px;
  }

  .thumb img {
    width: 120px;
    height: 70px;
  }

  .detalhes-grid {
    grid-template-columns: 1fr;
  }

  .detalhes-grid img {
    height: auto;
  }

  .lightbox {
    padding: 15px 55px;
  }

  .lightbox img {
    max-width: 96vw;
    max-height: 85vh;
  }

  .seta {
    width: 45px;
    height: 45px;
    font-size: 34px;
  }

  .seta-esq {
    left: 8px;
  }

  .seta-dir {
    right: 8px;
  }
  .cor-item {
  width: 80px;
}

.amostra {
  width: 45px;
  height: 45px;
}

.cor-item p {
  font-size: 12px;
}

.cores {
  justify-content: center;
  gap: 5px;
}

}


/* =========================================
   CELULAR PEQUENO
========================================= */

@media (max-width: 480px) {

  .produto-info h1 {
    font-size: 32px;
  }

  .produto-info h2 {
    font-size: 16px;
  }

  .btn-orcamento {
    width: 100%;
  }

  .thumb img {
    width: 100px;
    height: 60px;
  }

  .cor-item {
    width: 70px;
  }

  .amostra {
    width: 40px;
    height: 40px;
  }

  .cor-item p {
    font-size: 11px;
  }

}



.cor-item:hover .amostra {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  transform-origin: center center;
  cursor: pointer;
}

.cor-item:hover .amostra {
  transform: scale(1.25);
  box-shadow: 0 10px 25px rgba(185,133,58,0.25);
  border-color: #b9853a;
}


.submit-button:disabled {
	opacity: .65;
	cursor: not-allowed;
}