/* ============================================================
   Landing Postura Perfeita — camada de impacto sobre styles.css
   Animações, oferta dramática, sticky bar, marquee, selos
   ============================================================ */

/* ---------- Barra de anúncio ---------- */
.announce {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  background: linear-gradient(90deg, #a87f42, var(--dourado), #e6c98a, var(--dourado), #a87f42);
  background-size: 200% 100%;
  animation: shimmerbar 6s linear infinite;
  color: var(--verde-900);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.55rem 1rem;
}
@keyframes shimmerbar { to { background-position: 200% 0; } }
.pp-page .header { top: var(--announce-h, 32px); }
.pp-page .frame { display: none; }

/* ---------- Hero ---------- */
.pp-hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9.5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.pp-hero::before {
  content: "";
  position: absolute;
  top: -30%; left: 50%;
  width: 1200px; height: 1200px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201, 161, 94, 0.16) 0%, transparent 60%);
  pointer-events: none;
}
.pp-rays {
  position: absolute;
  top: 50%; left: 50%;
  width: min(120vw, 1400px);
  opacity: 0.05;
  transform: translate(-50%, -50%);
  animation: slowspin 90s linear infinite;
  pointer-events: none;
}
@keyframes slowspin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.pp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--dourado);
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dourado-claro);
  background: rgba(201, 161, 94, 0.08);
  animation: pillglow 2.6s ease-in-out infinite;
}
@keyframes pillglow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 161, 94, 0.35); }
  50% { box-shadow: 0 0 24px 4px rgba(201, 161, 94, 0.18); }
}

.pp-h1 {
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  line-height: 1.12;
  max-width: 1000px;
  margin-top: 1.8rem;
}
.hl {
  position: relative;
  white-space: nowrap;
  color: var(--dourado-claro);
  font-style: italic;
}
.hl::after {
  content: "";
  position: absolute;
  left: 2%; right: 2%;
  bottom: 0.06em;
  height: 0.22em;
  background: linear-gradient(90deg, transparent, rgba(201, 161, 94, 0.35), transparent);
  z-index: -1;
}

.pp-sub { max-width: 640px; margin-top: 1.6rem; color: var(--creme-suave); font-size: 1.12rem; }

/* CTA gigante com brilho varrendo */
.btn-mega {
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin-top: 2.4rem;
  padding: 1.35rem 3.2rem;
  border-radius: 6px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(0.85rem, 1.6vw, 1.02rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--verde-900);
  background: linear-gradient(135deg, var(--dourado) 0%, #e6c98a 55%, var(--dourado) 100%);
  box-shadow: 0 10px 40px rgba(201, 161, 94, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: megapulse 2.8s ease-in-out infinite;
}
.btn-mega:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 52px rgba(201, 161, 94, 0.6); }
.btn-mega::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  left: -80px;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  animation: shine 3.2s ease-in-out infinite;
}
@keyframes shine { 0%, 55% { left: -80px; } 85%, 100% { left: 120%; } }
@keyframes megapulse {
  0%, 100% { box-shadow: 0 10px 40px rgba(201, 161, 94, 0.45); }
  50% { box-shadow: 0 10px 56px rgba(201, 161, 94, 0.75); }
}
.btn-mega small {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  font-weight: 400;
  margin-top: 0.3rem;
  opacity: 0.85;
}

.pp-proof { display: flex; align-items: center; gap: 0.9rem; margin-top: 2.6rem; }
.pp-proof img { height: 46px; width: auto; }
.pp-proof .stars { color: var(--dourado); letter-spacing: 0.12em; font-size: 0.95rem; }
.pp-proof p { font-family: var(--sans); font-size: 0.78rem; color: var(--texto-suave); text-align: left; line-height: 1.45; }
.pp-proof strong { color: var(--creme); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: rgba(10, 40, 39, 0.7);
  padding: 0.9rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--dourado-claro);
}
.marquee-track span { margin: 0 1.6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Dores (checklist ✕) ---------- */
.painlist { list-style: none; margin-top: 1.6rem; }
.painlist li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  color: var(--escuro-texto);
  font-size: 1.02rem;
}
.painlist li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #b4552f;
  font-weight: 700;
}
.section-light .goldcheck li::before { content: "✓"; color: var(--dourado-escuro); border: none; width: auto; height: auto; top: auto; border-radius: 0; font-weight: 700; }

/* ---------- Passos (como funciona) ---------- */
.pp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem; }
@media (max-width: 860px) { .pp-steps { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }
.pp-step {
  text-align: center;
  border: 1px solid rgba(201, 161, 94, 0.25);
  border-radius: 8px;
  padding: 2.4rem 1.8rem;
  background: rgba(10, 40, 39, 0.45);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pp-step:hover { transform: translateY(-5px); border-color: var(--dourado); }
.pp-step .num {
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--dourado);
}
.pp-step h3 { margin-top: 1rem; font-size: 1.2rem; }
.pp-step p { color: var(--texto-suave); font-size: 0.94rem; margin-top: 0.5rem; }

/* ---------- Depoimentos ---------- */
.pp-depo {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--hairline-escura);
  border-radius: 8px;
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.3s ease;
}
.pp-depo:hover { transform: translateY(-4px); }
.pp-depo .stars { color: var(--dourado-escuro); letter-spacing: 0.14em; }
.pp-depo p { color: var(--escuro-texto); font-style: italic; font-size: 1rem; line-height: 1.65; }
.pp-depo footer { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--escuro-suave); }

/* ---------- OFERTA ---------- */
.pp-offer {
  position: relative;
  max-width: 760px;
  margin: 3rem auto 0;
  border: 1px double var(--dourado);
  outline: 1px solid rgba(201, 161, 94, 0.35);
  outline-offset: 8px;
  border-radius: 10px;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(22, 80, 74, 0.7) 0%, rgba(10, 40, 39, 0.95) 70%);
  padding: clamp(2.4rem, 5vw, 4rem);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.pp-offer-badge {
  position: absolute;
  top: -1.1rem; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--dourado), #e6c98a);
  color: var(--verde-900);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 0.55rem 1.6rem;
  border-radius: 999px;
  white-space: nowrap;
  animation: pillglow 2.6s ease-in-out infinite;
}
.pp-stack { list-style: none; margin: 1.8rem auto 0; max-width: 480px; text-align: left; }
.pp-stack li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(201, 161, 94, 0.25);
  color: var(--creme-suave);
  font-size: 0.98rem;
}
.pp-stack li strong { color: var(--dourado-claro); font-weight: 500; white-space: nowrap; }
.pp-price-old {
  margin-top: 2rem;
  color: var(--texto-suave);
  font-size: 1.1rem;
}
.pp-price-old s { text-decoration-color: #b4552f; text-decoration-thickness: 2px; }
.pp-price {
  font-family: var(--serif);
  font-size: clamp(3.6rem, 9vw, 5.4rem);
  line-height: 1;
  color: var(--dourado-claro);
  text-shadow: 0 0 40px rgba(201, 161, 94, 0.35);
  margin-top: 0.3rem;
}
.pp-installments { color: var(--creme); font-size: 1.15rem; margin-top: 0.5rem; }
.pp-installments strong { color: var(--dourado-claro); }
.pp-secure {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.6rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--texto-suave);
}

/* Selo de garantia */
.pp-seal {
  width: 130px; height: 130px;
  margin: 0 auto 1.2rem;
  border: 1px solid var(--dourado);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  background: radial-gradient(circle, rgba(201, 161, 94, 0.12), transparent 70%);
  animation: pillglow 3s ease-in-out infinite;
}
.pp-seal .big { font-family: var(--serif); font-size: 2.1rem; color: var(--dourado-claro); line-height: 1; }
.pp-seal .small { font-family: var(--sans); font-size: 0.56rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--creme-suave); text-align: center; }

/* ---------- Para quem é / não é ---------- */
.pp-fit { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 3rem; }
@media (max-width: 760px) { .pp-fit { grid-template-columns: 1fr; } }
.pp-fit-col { border: 1px solid rgba(201, 161, 94, 0.25); border-radius: 8px; padding: 2rem 1.8rem; background: rgba(10, 40, 39, 0.45); }
.pp-fit-col h3 { font-size: 1.25rem; margin-bottom: 1.2rem; }
.pp-fit-col ul { list-style: none; }
.pp-fit-col li { position: relative; padding: 0.45rem 0 0.45rem 1.8rem; color: var(--creme-suave); font-size: 0.97rem; }
.pp-fit-col.sim li::before { content: "✓"; position: absolute; left: 0; color: var(--dourado); font-weight: 700; }
.pp-fit-col.nao { opacity: 0.75; }
.pp-fit-col.nao li::before { content: "✕"; position: absolute; left: 0; color: #b4552f; font-weight: 700; }

/* ---------- Sticky bar ---------- */
.pp-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 65;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 0.8rem 1rem;
  background: rgba(10, 40, 39, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--dourado);
  transform: translateY(110%);
  transition: transform 0.45s ease;
}
.pp-sticky.on { transform: none; }
.pp-sticky .preco { font-family: var(--serif); font-size: 1.5rem; color: var(--dourado-claro); }
.pp-sticky .preco small { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--texto-suave); display: block; }
.pp-sticky .btn-mega { margin-top: 0; padding: 0.85rem 1.8rem; font-size: 0.78rem; animation: none; }
@media (max-width: 560px) { .pp-sticky .preco { font-size: 1.2rem; } }

/* ---------- Reveal turbinado ---------- */
.pp-page .reveal { transform: translateY(34px) scale(0.985); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.pp-page .reveal.visible { transform: none; }
.float-soft { animation: floatsoft 5s ease-in-out infinite; }
@keyframes floatsoft { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (prefers-reduced-motion: reduce) {
  .announce, .pp-pill, .btn-mega, .btn-mega::after, .pp-rays, .marquee-track,
  .pp-offer-badge, .pp-seal, .float-soft { animation: none !important; }
}

/* ---------- Toast de prova social ---------- */
.pp-toast {
  position: fixed;
  left: 18px; bottom: 88px;
  z-index: 64;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 340px;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--dourado);
  border-radius: 10px;
  background: rgba(10, 40, 39, 0.97);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  transform: translateX(-120%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.pp-toast.on { transform: none; }
.pp-toast .avatar {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dourado), #e6c98a);
  color: var(--verde-900);
  font-family: var(--serif);
  font-size: 1.3rem;
}
.pp-toast p { font-family: var(--sans); font-size: 0.8rem; line-height: 1.45; color: var(--creme-suave); }
.pp-toast p strong { color: var(--dourado-claro); }
.pp-toast p small { display: block; font-size: 0.66rem; letter-spacing: 0.08em; color: var(--texto-suave); margin-top: 0.15rem; }
.pp-toast .fechar {
  position: absolute; top: 4px; right: 8px;
  background: none; border: none; cursor: pointer;
  color: var(--texto-suave); font-size: 0.9rem;
}
@media (max-width: 560px) { .pp-toast { left: 10px; right: 10px; max-width: none; bottom: 78px; } }

/* ---------- Responsividade mobile ---------- */
:root { --announce-h: 32px; }
.announce { height: var(--announce-h); display: flex; align-items: center; justify-content: center; white-space: nowrap; overflow: hidden; }
.a-short { display: none; }

@media (max-width: 640px) {
  .a-full { display: none; }
  .a-short { display: inline; }
  .announce { font-size: 0.64rem; letter-spacing: 0.16em; }

  .pp-page .header-inner { padding: 0.6rem 1rem; gap: 0.8rem; }
  .pp-page .brand-logo { height: 32px; }
  .pp-page .header-cta { padding: 0.55rem 0.9rem; font-size: 0.62rem; letter-spacing: 0.12em; }

  .pp-hero { padding: 8rem 1.2rem 3.5rem; min-height: auto; }
  .pp-pill { font-size: 0.58rem; letter-spacing: 0.18em; padding: 0.5rem 1.1rem; }
  .pp-h1 { font-size: clamp(1.9rem, 8.6vw, 2.6rem); }
  .hl { white-space: normal; }
  .pp-sub { font-size: 1rem; }

  .btn-mega { width: 100%; max-width: 420px; padding: 1.15rem 1.2rem; font-size: 0.82rem; letter-spacing: 0.12em; }
  .pp-proof { flex-direction: column; text-align: center; gap: 0.5rem; }
  .pp-proof p { text-align: center; }

  .marquee-track { font-size: 0.66rem; letter-spacing: 0.24em; }
  .section { padding-left: 1.2rem; padding-right: 1.2rem; }

  .pp-offer { outline-offset: 5px; }
  .pp-stack li { flex-direction: column; gap: 0.1rem; font-size: 0.92rem; }
  .pp-stack li strong { align-self: flex-end; }
  .pp-price { font-size: clamp(3rem, 16vw, 4rem); }
  .pp-secure { gap: 0.7rem; font-size: 0.6rem; }

  .pp-sticky { gap: 0.8rem; padding: 0.65rem 0.8rem; }
  .pp-sticky .btn-mega { width: auto; padding: 0.75rem 1.2rem; font-size: 0.7rem; }
}
