/* =====================
   PÁGINA INICIAL
===================== */

.pagina-index {
  background: linear-gradient(135deg, #f7A8C8, #D8B4F8, #EADCF8);
  font-family: Arial, sans-serif;
}

.hero {
  background: linear-gradient(135deg, #f7A8C8, #D8B4F8, #EADCF8);
  padding: 30px 20px 35px;
  text-align: center;
  color: #fff;
}

/* TOPO */
.topo {
  text-align: center;
  padding: 20px 16px 6px;
  color: white;
}

.topo h1 {
  font-size: 34px;
  font-weight: 700;
  margin: 6px 0 4px;
}

.topo p {
  font-size: 16px;
  opacity: 0.95;
  margin: 0 0 20px;
}

.redes {
  margin-top: 20px;
}

.redes-sociais {
  display: flex;
  justify-content: center; /* centraliza os ícones */
  gap: 12px;
  margin: 8px 0 14px;
}

.redes-sociais img {
  width: 32px;
  height: 32px;

}

/* TÍTULO */
.titulo-sec {
  text-align: center;
  color: white;
  margin: 14px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
}

/* LISTA */
.lista-produtos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 16px 0;
  margin: 0 auto;
}

/* CARD */
.card-produto {
  background: white;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  margin: 0;
}

/* BADGES */
.badges {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 8px;
}

.badge {
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 20px;
  color: white;
  font-weight: bold;
}

.badge.rosa {
  background: #f38bb3;
}

.badge.verde {
  background: #3ccf91;
}

/* IMAGEM */
.card-produto img {
  width: 100%;
  max-height: 220px;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
}

/* TEXTO */
.card-produto h3 {
  display: block
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 12px 0 6px;
  text-align: left
}

.card-produto p {
  text-align: left;
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

/* BOTÃO */
.btn-card {
  display: block;
  background: #f2f2f2;
  color: #6a3d7c;
  text-decoration: none;
  padding: 12px;
  border-radius: 14px;
  font-weight: bold;
  text-align: left;
}

.badge.verde.pulse {
  animation: pulseVerde 1.8s infinite;
  position: relative;
}

/* animação verde */
@keyframes pulseVerde {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(46, 204, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

.badge.rosa.pulse {
  position: relative;
  animation: pulseRosa 1.8s infinite;
}

@keyframes pulseRosa {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 105, 180, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 105, 180, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 105, 180, 0);
  }
}

.rodape {
  background: transparent; /* não pesa visualmente */
  text-align: center;
  padding: 20px 10px;
  font-size: 13px;
  color: #000000; /* preto */
}

.rodape p {
  margin: 0;
}

@media (max-width: 768px) {
  .rodape {
    margin-top: 20px;
  }
}

/* =========================
   PÁGINA DO PRODUTO
========================= */

body {
  background: linear-gradient(135deg, #f7A8C8, #D8B4F8, #EADCF8);
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.btn-voltar {
  display: inline-block;
  margin: 16px 0;
  font-size: 14px;
  color: #6a2d6f; /* roxo escuro */
  text-decoration: none;
  font-weight: 500;
}

.btn-voltar:hover {
  text-decoration: underline;
}

.btn-voltar-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin: 16px auto;
}

.btn-voltar-pill:hover {
  background: rgba(255, 255, 255, 0.35);
}

.voltar-container {
  display: flex;
  justify-content: center;
}

Vou botar o botão tem que ser .btn-voltar-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.seta-voltar {
  position: relative;
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ponta da seta */
.seta-voltar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.btn-voltar-pill {
  display: flex;
  align-items: center;
  gap: 6px;

  margin: 16px auto 0 auto; /* ISSO centraliza */
  width: fit-content;

  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.titulo-oferta {
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  color: #ffffff;

  margin-top: 24px;   /* distância do botão voltar */
  margin-bottom: 32px; /* distância até o card */
}

.container {
  max-width: 420px;
  margin: 20px auto 0 auto;
  padding: 20px;
  height: auto;
  max-height: none;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  position: relative; /* necessário pro selo */
}

.selo-frete {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #2ecc71;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}

.card-topo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.imagem-produto {
  width: 90px;
}

.info h2 {
  margin: 0 0 10px;
}

.avista {
  color: #2b0a3d; /* roxo bem escuro */
  font-weight: bold;
  margin: 0;
}

.parcelado {
  color: #e1007a;
  font-weight: bold;
  margin: 5px 0 0;
}

.botao-comprar {
  display: block;
  margin-top: 20px;
  background: #5a3d6c;
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

html, body {
  height: auto;
  min-height: auto;
}

body {
  overflow-x: hidden;
}

/* remove espaço extra em mobile */
@media (max-width: 600px) {
  body {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .container {
    margin-bottom: 0 !important;
  }

  footer {
    margin-bottom: 0 !important;
    padding-bottom: 16px;
  }

/* FORÇA FIM REAL DA PÁGINA NO MOBILE */
@media (max-width: 600px) {
  html, body {
    height: fit-content !important;
    min-height: fit-content !important;
  }

  body {
    display: block !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .pagina-index {
    min-height: fit-content !important;
  }
}