.card-produto {
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.726);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: radial-gradient(circle at top, #02344e, #031b2c);
  color: #fff;
}

.card-produto:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.img-produto{
    margin-top: 2.5rem;
}

/* Etiquieta Oferta */
@keyframes pulse-badge {
    /* Badge personalizada */
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 193, 7, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.9);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 193, 7, 0.5);
  }
}
.badge-oferta {
  position: absolute;
  top: 12px;
  left: 25px;
  background: #ffc107;
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.432);
  display: flex;
  align-items: center;
  gap: 5px;
  animation: pulse-badge 1.6s infinite ease-in-out;
  z-index: 10;
}

/* Etiqueta Promoção */
@keyframes pulsePromo {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(220, 53, 69, 0.6);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(220, 53, 69, 0.9);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(220, 53, 69, 0.6);
  }
}
.etiqueta-promocao {
  position: absolute;
  top: 12px;
  left: 25px;
  z-index: 10;
}
.animate-promo {
  animation: pulsePromo 1.5s infinite ease-in-out;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 0.5rem 0 0.5rem 0;
}

/* Animação Fire - Fogo */
@keyframes pulseFire {
    /* Pulsa luz */
  0% {
    text-shadow:
      0 0 5px #ff7300,
      0 0 10px #ff0000,
      0 0 20px #ff0000;
    color: orange;
  }
  100% {
    text-shadow:
      0 0 10px #ffa500,
      0 0 20px #ff4500,
      0 0 30px #ff0000;
    color: #ffcc00;
  }
}
@keyframes tremor {
    /* Tremer levemente */
  0% { transform: translate(0, 0); }
  25% { transform: translate(1px, -1px); }
  50% { transform: translate(-1px, 1px); }
  75% { transform: translate(1px, 1px); }
  100% { transform: translate(-1px, -1px); }
}
.fire-icon {
  color: orange;
  font-size: 2rem;
  animation: pulseFire 0.8s infinite alternate ease-in-out, tremor 0.1s infinite;
  text-shadow:
    0 0 5px #ff7300,
    0 0 10px #ff0000,
    0 0 20px #ff0000;
}

/* Animação gem - Diamante */
@keyframes pulseGem {
  0% {
    transform: scale(1);
    color: #0dcaf0;
    text-shadow: 0 0 5px #0dcaf0;
  }
  50% {
    transform: scale(1.25);
    color: #66fcf1;
    text-shadow: 0 0 12px #66fcf1;
  }
  100% {
    transform: scale(1);
    color: #0dcaf0;
    text-shadow: 0 0 5px #0dcaf0;
  }
}
.animate-gem {
  animation: pulseGem 1.5s infinite ease-in-out;
  color: #0dcaf0;
  font-size: 2rem;
}

/* Botão Falar sobre este produto */
@keyframes pulseWhats {
  0%{
    box-shadow: 0 0 0 0 #0ee62b79;
  }
  70%{
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100%{
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.FalarWhats{
    animation: pulseWhats 2s infinite;
}
.FalarWhats:hover{
    transform: scale(1.1);
}

/* Efeito lamina */
@keyframes shineMove{
    0%{
        left: -75%;
    }
    100%{
        left: 125%;
    }
}

.shine{
    position: relative;
    overflow: hidden;
}

.shine::before{
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skew(-25deg);

    /* Animação Automática */
    animation: shineMove 3s infinite linear;
}

/* Produto Indisponivel */
.card-produto.indisponivel {
  /* Estilo para produtos indisponíveis */
  opacity: 0.5;
  pointer-events: none;
  position: relative;
}
.card-produto.indisponivel .btn {
  opacity: 0.7;
  pointer-events: none;
  cursor: default;
}
/* Selo de Indisponivel */
@keyframes pulse-badge-in {
    /* Badge personalizada */
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 7, 7, 0.356);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(255, 7, 7, 0.329);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 7, 7, 0.664);
  }
}
.badge-in {
  position: absolute;
  top: 12px;
  left: 25px;
  background: #f8d7da;
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.432);
  display: flex;
  align-items: center;
  gap: 5px;
  animation: pulse-badge-in 1.6s infinite ease-in-out;
  z-index: 10;
}

/* Section - Roda-pé */
.bg-rodape{
    background: radial-gradient(circle at top, #00111a, #000);
}
.btnVoltar{
    background: radial-gradient(circle at top, #000, #00283d);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 28px;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.397);
}
.btnVoltar:hover{
    background: radial-gradient(circle at top, #00283d, #000);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 18px rgba(1, 72, 112, 0.39);
}
.btnVoltar:active{
  transform: translateY(1px) scale(0.98);
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.3);
}