/* Página de presentes: scroll nativo, hero de abertura + vitrine e-commerce */

html.pg, html.pg body { height: auto; overflow-x: hidden; overscroll-behavior-y: auto; }
.js .app.pg-scroll { position: static; overflow: visible; touch-action: auto; }
/* cena estática nesta página: nada anima durante o scroll */
html.pg .petal-wrap { will-change: auto; }

.pg-hero {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(30px + var(--sa-top)) 28px 44px;
}

.pg-chevron {
  width: 26px;
  margin-top: 2px;
  animation: pg-pulse 1.8s ease-in-out infinite;
}
.pg-chevron svg { width: 100%; display: block; stroke: var(--ouro); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; transform: rotate(180deg); }
@keyframes pg-pulse { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

.pg-lista {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
  padding: 12px 18px calc(30px + var(--sa-bottom));
}
.pg-lista-titulo {
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: clamp(20px, 5.6vw, 26px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ouro-claro);
  text-align: center;
  margin-bottom: 6px;
}
.pg-lista-sub {
  font-size: 13px;
  color: var(--rosa-300);
  text-align: center;
  margin-bottom: 22px;
}

.pg-fim {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 46px 28px calc(70px + var(--sa-bottom));
}

@media (min-width: 760px) {
  .pg-lista { max-width: 980px; }
  .grid-presentes { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .gift-nome { font-size: 14px; }
}
