/* Estilos específicos do produto 1 podem ser adicionados aqui */

/* ======== Página de Produto ======== */
.produto-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1100px;
  margin: 3.5rem auto 2.5rem auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 2.5rem 2rem;
}

.imagens-produto {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.imagem-principal {
  width: 440px;
  height: 320px;
  max-width: 90vw;
  max-height: 60vw;
  object-fit: contain;
  border-radius: 10px;
  background: #f7f7f7;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-top: 4.5rem;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
  opacity: 1;
}
.imagem-principal.fade-out {
  opacity: 0;
}
.imagem-principal.fade-in {
  opacity: 1;
}
.miniaturas {
  display: flex;
  gap: 0.7rem;
}
.miniaturas img {
  width: 90px;
  height: 66px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  border: 2.5px solid #e0e0e0;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.miniaturas img:hover,
.miniaturas img.selected {
  border: 2.5px solid #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.info-produto {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: flex-start;
}
.info-produto h1 {
  font-size: 1.45rem;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.avaliacao {
  color: #f7b731;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.preco {
  font-size: 1.25rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 0.1rem;
}
.parcelamento {
  font-size: 1.02rem;
  color: #888;
  margin-left: 0.2rem;
}
.variacoes {
  margin: 0.7rem 0;
  font-size: 1.1rem;
  color: #222;
}
.variacoes select {
  margin-left: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 18px;
  border: 1.5px solid #e0e0e0;
  font-size: 1.08rem;
  background: #fafafa;
  color: #222;
}
.leve-mais {
  background: #f7faff;
  border: 1.5px solid #3498db;
  border-radius: 10px;
  padding: 1.1rem 1.2rem;
  margin: 0.7rem 0 0.2rem 0;
}
.leve-mais h3 {
  color: #3498db;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.opcoes-compre {
  display: flex;
  gap: 2rem;
  font-size: 1.1rem;
  align-items: stretch;
  justify-content: flex-start;
}
.opcoes-compre label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.1rem 1.6rem;
  min-width: 160px;
  transition: border 0.2s, box-shadow 0.2s;
  position: relative;
}
.opcoes-compre label input[type="radio"]:checked + span,
.opcoes-compre label input[type="radio"]:checked ~ .preco-opcao {
  font-weight: 700;
  color: #3498db;
}
.opcoes-compre label input[type="radio"]:checked ~ .preco-opcao {
  border-bottom: 2px solid #3498db;
}
.opcoes-compre label input[type="radio"]:checked ~ * {
  color: #3498db;
}
.opcoes-compre label input[type="radio"]:checked ~ .preco-opcao {
  color: #2ecc40;
}
.opcoes-compre label:hover, .opcoes-compre label:focus-within {
  border: 2px solid #3498db;
  box-shadow: 0 4px 16px rgba(52,152,219,0.08);
}
.preco-opcao {
  color: #2ecc40;
  font-weight: 600;
  margin-left: 0.3rem;
}
.cupom {
  display: flex;
  gap: 0.5rem;
  margin: 0.7rem 0 0.2rem 0;
}
.cupom input {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 160px;
}
.cupom button {
  padding: 0.5rem 1.2rem;
  background: #3498db;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.cupom button:hover {
  background: #2980b9;
}
#adicionar-carrinho {
  margin-top: 2.2rem;
  padding: 1.1rem 0;
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 32px;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: background 0.2s;
  letter-spacing: 0.01em;
}
#adicionar-carrinho:hover {
  background: #222;
}
.descricao {
  margin-top: 1.2rem;
  background: #fafafa;
  border-radius: 14px;
  padding: 1.1rem 1.1rem 1.1rem 1.1rem;
  color: #222;
  font-size: 1.05rem;
  line-height: 1.7;
  border: 1px solid #f0f0f0;
}
.descricao h2 {
  color: #000;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Responsivo */
@media (max-width: 900px) {
  .produto-container {
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 1.2rem;
    gap: 2rem;
    background: #fff;
    box-shadow: none;
    border-radius: 0;
  }
  .imagens-produto {
    width: 100%;
    align-items: center;
  }
  .imagem-principal {
    width: 98vw;
    max-width: 98vw;
    height: auto;
    max-height: 60vw;
    margin-top: 2.5rem;
  }
}
@media (max-width: 600px) {
  .produto-container {
    padding: 0.7rem 3vw;
    gap: 1.2rem;
    background: #fff;
    box-shadow: none;
    border-radius: 0;
  }
  .info-produto {
    padding: 0 0.5rem;
  }
  .info-produto h1 {
    font-size: 1.3rem;
  }
  .preco {
    font-size: 1.1rem;
  }
  .descricao {
    padding: 0.9rem 0.7rem 0.9rem 0.7rem;
  }
  .imagem-principal {
    width: 98vw;
    max-width: 98vw;
    height: auto;
    max-height: 60vw;
    margin-top: 1.5rem;
  }
  .miniaturas img {
    width: 60px;
    height: 44px;
    border-radius: 8px;
  }
  #adicionar-carrinho {
    font-size: 1.05rem;
    padding: 1rem 0;
    border-radius: 24px;
  }
  .opcoes-compre {
    flex-direction: column;
    gap: 1.1rem;
  }
  .opcoes-compre label {
    min-width: unset;
    width: 100%;
    padding: 1rem 1.1rem;
  }
}

.navbar {
  position: relative;
}
.logo {
  position: static;
  left: unset;
  top: unset;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  z-index: 2;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.nav-icons.nav-left, .nav-icons.nav-right {
  z-index: 3;
}

/* Linha divisória suave */
.info-produto > *:not(:first-child):not(.descricao) {
  border-top: 1px solid #f0f0f0;
  padding-top: 1.1rem;
} 