/* ==========================================================
   Noé Play Kids — Página de vendas (versão standalone)
   ========================================================== */

:root {
  --bg: #F5F5F5;
  --white: #FFFFFF;
  --ink: #153B5A;
  --ink-deep: #0B2A45;
  --ink-soft: #475569;
  --muted: #94A3B8;
  --blue: #1E4E79;
  --gold: #E8B04A;
  --gold-deep: #C8902A;
  --gold-dark: #8a6418;
  --gold-soft: #FFF8EA;
  --green: #22C55E;
  --green-deep: #15803D;
  --whatsapp: #075E54;
  --whatsapp-msg: #DCF8C6;
  --gold-gradient: linear-gradient(90deg,#8a6418 0%,#c8902a 18%,#e8b04a 38%,#f5d76e 50%,#e8b04a 62%,#c8902a 82%,#8a6418 100%);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
h1, h2, h3, h4 { font-family: "Nunito", system-ui, sans-serif; letter-spacing: -.01em; margin: 0; }
p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ==================== LAYOUT ==================== */
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.container-tight { max-width: 640px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

.section { padding: 56px 0; }
.section-white { background: var(--white); }
.section-gray { background: var(--bg); padding: 36px 0; }
@media (min-width: 640px) { .section { padding: 80px 0; } .section-gray { padding: 48px 0; } }

.gold-divider { height: 3px; width: 100%; background: var(--gold-gradient); }

.section-title {
  text-align: center;
  font-weight: 900;
  font-size: 26px;
  color: var(--ink);
}
.section-title-sm {
  margin-top: 8px;
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 15px;
  margin: 12px auto 0;
  max-width: 600px;
}
.section-sub-sm {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 13px;
  max-width: 520px;
  margin-inline: auto;
}
@media (min-width: 640px) {
  .section-title { font-size: 36px; }
  .section-title-sm { font-size: 28px; }
  .section-sub { font-size: 16px; }
  .section-sub-sm { font-size: 14px; }
}

/* ==================== BADGES ==================== */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 9999px; padding: 6px 14px;
  font-size: 12px; font-weight: 700; line-height: 1;
}
.badge-white {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  box-shadow: inset 0 0 0 1px rgba(30,78,121,.15), 0 1px 3px rgba(0,0,0,.06);
}
.badge-green {
  background: rgba(34,197,94,.12);
  color: var(--green-deep);
  box-shadow: inset 0 0 0 1px rgba(34,197,94,.3);
}
.badge-gold {
  background: rgba(232,176,74,.15);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(232,176,74,.3);
}
.ic { width: 16px; height: 16px; }
.ic-sm { width: 14px; height: 14px; }

/* ==================== HERO ==================== */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; opacity: .4; pointer-events: none; }
.hero-blob { position: absolute; border-radius: 9999px; filter: blur(60px); }
.hero-blob-1 { top: -96px; left: -96px; width: 288px; height: 288px; background: rgba(30,78,121,.1); }
.hero-blob-2 { top: 33%; right: -80px; width: 320px; height: 320px; background: rgba(232,176,74,.15); }
.hero-inner { position: relative; max-width: 760px; padding-top: 40px; padding-bottom: 48px; text-align: center; }
@media (min-width: 640px) { .hero-inner { padding-top: 56px; padding-bottom: 64px; } }

.hero-title {
  margin-top: 20px;
  font-weight: 900;
  line-height: 1.12;
  font-size: 26px;
  background: linear-gradient(135deg, #0B2A45, #153B5A, #1E4E79);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 640px) { .hero-title { font-size: 44px; } }
@media (min-width: 1024px) { .hero-title { font-size: 56px; } }

.hero-image { margin: 24px auto 0; max-width: 340px; }
.hero-image img {
  width: 100%; border-radius: 24px;
  box-shadow: 0 30px 60px -20px rgba(21,59,90,.35);
  outline: 1px solid rgba(0,0,0,.05);
}
@media (min-width: 640px) { .hero-image { max-width: 440px; } }

.hero-lead { margin: 24px auto 0; max-width: 600px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.hero-lead strong { color: var(--ink); }

.hero-rating { margin-top: 28px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-soft); }
.hero-rating span { font-weight: 600; }

.stars { display: inline-flex; gap: 2px; }
.stars::before {
  content: "★★★★★";
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1px;
}
.rating-row { margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.rating-num { font-weight: 700; color: var(--ink); font-size: 14px; margin-left: 4px; }

/* ==================== TAGS ==================== */
.tag-row { margin-top: 36px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; font-size: 13px; }
.tag {
  background: var(--bg);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(30,78,121,.1);
}

/* ==================== CARROSSEL — base ==================== */
.carousel { position: relative; margin-top: 32px; user-select: none; }
.carousel-window {
  overflow: hidden;
  border-radius: 24px;
}
.carousel-track { display: flex; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.carousel-slide { min-width: 100%; flex-shrink: 0; }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 9999px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(21,59,90,.18);
  display: grid; place-items: center;
  color: var(--gold-dark);
  transition: background .2s, color .2s;
  box-shadow: 0 6px 18px rgba(21,59,90,.18), inset 0 0 0 1px rgba(232,176,74,.4);
}
.carousel-arrow:hover { background: var(--gold); color: var(--white); }
.carousel-arrow svg { width: 20px; height: 20px; }
.carousel-prev { left: 4px; }
.carousel-next { right: 4px; }
@media (min-width: 640px) { .carousel-prev { left: -16px; } .carousel-next { right: -16px; } }

.carousel-dots { margin-top: 20px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.carousel-dot {
  width: 10px; height: 10px; border-radius: 9999px;
  background: rgba(232,176,74,.4);
  transition: background .25s, width .25s;
}
.carousel-dot:hover { background: rgba(232,176,74,.7); }
.carousel-dot.active { width: 32px; background: var(--gold-deep); }
.carousel-hint { margin-top: 12px; text-align: center; font-size: 12px; color: var(--muted); }

/* Jogos carrossel */
.jogos-carousel .carousel-window {
  background: linear-gradient(135deg, var(--gold-soft), #fff);
  box-shadow: 0 18px 50px -20px rgba(200,144,42,.4), inset 0 0 0 1px rgba(232,176,74,.3);
}
.jogo-slide { min-width: 100%; flex-shrink: 0; padding: 24px 12px; }
@media (min-width: 640px) { .jogo-slide { padding: 40px; } }
.jogo-inner { max-width: 300px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
@media (min-width: 640px) { .jogo-inner { max-width: 440px; gap: 20px; } }
.jogo-img {
  position: relative; width: 100%; max-width: 260px; aspect-ratio: 1/1;
  border-radius: 18px; overflow: hidden; background: #fff;
  box-shadow: 0 18px 45px -15px rgba(21,59,90,.35), inset 0 0 0 2px rgba(232,176,74,.5);
}
@media (min-width: 640px) { .jogo-img { max-width: 420px; border-radius: 24px; } }
.jogo-img img { width: 100%; height: 100%; object-fit: cover; }
.jogo-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,176,74,.15); color: var(--gold-dark);
  padding: 4px 12px; border-radius: 9999px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  box-shadow: inset 0 0 0 1px rgba(232,176,74,.4);
}
.jogo-name { margin-top: 8px; font-weight: 900; color: var(--ink); font-size: 22px; line-height: 1.15; }
.jogo-desc { margin-top: 6px; color: var(--ink-soft); font-size: 13px; }
@media (min-width: 640px) { .jogo-name { font-size: 30px; } .jogo-desc { font-size: 15px; } }

/* Depoimentos carrossel */
.dep-carousel { margin-top: 32px; }
.dep-carousel .carousel-window {
  background: linear-gradient(135deg, #F8FAFC, #EEF2F6);
  box-shadow: 0 18px 50px -20px rgba(21,59,90,.25), inset 0 0 0 1px rgba(30,78,121,.1);
}
.dep-slide {
  min-width: 100%; flex-shrink: 0;
  padding: 24px 12px;
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 640px) { .dep-slide { padding: 32px 12px; } }
.dep-slide img {
  display: block; margin: 0 auto;
  max-width: 260px;
  max-height: 55vh;
  width: auto; height: auto;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 12px 30px -12px rgba(21,59,90,.3), inset 0 0 0 1px rgba(0,0,0,.05);
}
@media (min-width: 640px) { .dep-slide img { max-width: 340px; max-height: 480px; } }
.dep-arrow { color: var(--blue); box-shadow: 0 4px 10px rgba(21,59,90,.15), inset 0 0 0 1px rgba(30,78,121,.15); }
.dep-arrow:hover { background: var(--blue); color: var(--white); }
.dep-dots .carousel-dot { background: rgba(30,78,121,.25); }
.dep-dots .carousel-dot:hover { background: rgba(30,78,121,.5); }
.dep-dots .carousel-dot.active { background: var(--blue); }

/* ==================== COMO USAR — STEPS ==================== */
.steps {
  margin-top: 24px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 8px 24px -12px rgba(21,59,90,.15), inset 0 0 0 1px rgba(30,78,121,.1);
  overflow: hidden;
}
.steps .step { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-top: 1px solid rgba(30,78,121,.1); }
.steps .step:first-child { border-top: 0; }
.step-icon {
  position: relative; display: grid; place-items: center;
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--white);
}
.step-icon svg { width: 18px; height: 18px; }
.step-num {
  position: absolute; top: -6px; right: -6px;
  width: 16px; height: 16px; border-radius: 9999px;
  background: var(--ink); color: var(--white);
  font-size: 9px; font-weight: 700;
  display: grid; place-items: center;
  outline: 2px solid var(--white);
}
.step-title { font-family: "Nunito", sans-serif; font-weight: 700; color: var(--ink); font-size: 14px; line-height: 1.1; }
.step-desc { font-size: 11px; color: var(--ink-soft); line-height: 1.25; }

@media (min-width: 640px) {
  .steps { display: grid; grid-template-columns: repeat(5, 1fr); }
  .steps .step {
    flex-direction: column; text-align: center; gap: 6px;
    border-top: 0; border-left: 1px solid rgba(30,78,121,.1);
    padding: 16px;
  }
  .steps .step:first-child { border-left: 0; }
  .step-icon { width: 40px; height: 40px; }
  .step-icon svg { width: 20px; height: 20px; }
}

/* ==================== OFERTA ==================== */
.section-offer {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--white);
  padding: 64px 0;
}
@media (min-width: 640px) { .section-offer { padding: 96px 0; } }
.offer-bg { position: absolute; inset: 0; opacity: .4; pointer-events: none; }
.offer-blob { position: absolute; border-radius: 9999px; filter: blur(60px); }
.offer-blob-1 { top: -128px; left: -80px; width: 288px; height: 288px; background: var(--blue); }
.offer-blob-2 { bottom: 0; right: -80px; width: 320px; height: 320px; background: rgba(232,176,74,.3); }
.offer-title { margin-top: 12px; font-weight: 900; font-size: 28px; line-height: 1.15; color: var(--white); }
@media (min-width: 640px) { .offer-title { font-size: 44px; } }
.offer-sub { margin-top: 16px; color: rgba(255,255,255,.8); font-size: 15px; }

.offer-card {
  position: relative;
  margin-top: 32px;
  background: var(--white);
  color: var(--ink);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 30px 70px -25px rgba(0,0,0,.45), inset 0 0 0 1px rgba(232,176,74,.3);
}
@media (min-width: 640px) {
  .offer-card { padding: 40px; border-radius: 30px; margin-top: 40px; }
}

.offer-list li { display: flex; align-items: center; gap: 12px; padding: 6px 0; }
.check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 9999px;
  display: inline-grid; place-items: center;
  background: rgba(34,197,94,.15);
  color: var(--green-deep); font-weight: 800; font-size: 13px;
}
.item { flex: 1; font-size: 14px; font-weight: 500; color: var(--ink); }
.price-strike { font-size: 12px; font-weight: 600; color: var(--muted); text-decoration: line-through; flex-shrink: 0; }
@media (min-width: 640px) { .item { font-size: 16px; } .price-strike { font-size: 14px; } }

.total-row {
  margin-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  background: #F5F7FA;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: inset 0 0 0 1px rgba(30,78,121,.1);
  font-size: 13px; text-transform: uppercase; letter-spacing: .5px; font-weight: 700;
}
.total-strike { font-family: "Nunito", sans-serif; font-weight: 900; font-size: 16px; text-decoration: line-through; text-decoration-thickness: 2px; }

.divider-soft {
  height: 1px; margin: 28px 0;
  background: linear-gradient(to right, transparent, rgba(30,78,121,.2), transparent);
}

.pre-reveal, .post-reveal { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.muted { color: var(--ink-soft); font-size: 14px; }
.muted.small { font-size: 13px; }
.muted.upper { text-transform: uppercase; letter-spacing: 1px; font-size: 12px; }
.price-full {
  font-family: "Nunito", sans-serif; font-weight: 900;
  font-size: 36px; line-height: 1; color: var(--muted);
  text-decoration: line-through; text-decoration-thickness: 3px;
}
.price-promo {
  font-family: "Nunito", sans-serif; font-weight: 900;
  font-size: 52px; line-height: 1; letter-spacing: -1px;
  color: var(--green-deep);
}
@media (min-width: 640px) { .price-promo { font-size: 64px; } }
.hint-gold { color: var(--gold-dark); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; text-align: center; }
.hint-gold.small { font-size: 11px; }

/* RASPADINHA */
.scratch-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  margin-top: 12px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-soft), #fff);
  box-shadow: inset 0 0 0 1px rgba(232,176,74,.4);
}
@media (min-width: 640px) { .scratch-wrap { height: 260px; } }
.scratch-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 20px; gap: 6px;
}
#scratch-canvas {
  position: absolute; inset: 0;
  cursor: grab; touch-action: none;
  transition: opacity .5s ease;
}
.scratch-tip {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 9999px;
  background: rgba(255,255,255,.9);
  font-size: 11px; font-weight: 600; color: var(--gold-dark);
  box-shadow: 0 2px 6px rgba(0,0,0,.08), inset 0 0 0 1px rgba(232,176,74,.4);
  animation: float-soft 6s ease-in-out infinite;
  pointer-events: none;
}
.scratch-tip svg { width: 14px; height: 14px; }
.scratch-pct {
  position: absolute; top: 8px; right: 8px;
  background: rgba(255,255,255,.9);
  padding: 2px 8px; border-radius: 9999px;
  font-size: 10px; font-weight: 800; color: var(--gold-dark);
  box-shadow: 0 2px 6px rgba(0,0,0,.08), inset 0 0 0 1px rgba(232,176,74,.4);
  pointer-events: none;
}

/* COUNTDOWN */
.countdown {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: #FEF3C7;
  color: var(--gold-dark);
  padding: 10px 16px; border-radius: 14px;
  font-size: 14px; font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(232,176,74,.4);
}
.countdown .ic { width: 16px; height: 16px; }
.countdown-time {
  font-family: "Nunito", sans-serif; font-weight: 900;
  font-size: 18px; font-variant-numeric: tabular-nums; letter-spacing: -.5px;
}

/* CTA */
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--green);
  color: var(--white);
  font-family: "Nunito", sans-serif; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px;
  padding: 14px 24px;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform .25s, background .25s;
  animation: cta-pulse-green 2.4s ease-in-out infinite;
}
.cta:hover { background: #16a34a; transform: translateY(-2px) scale(1.02); }
.cta svg { width: 18px; height: 18px; transition: transform .25s; }
.cta:hover svg { transform: translateX(4px); }
.cta-xl { margin-top: 20px; padding: 16px 28px; font-size: 14px; width: 100%; max-width: 420px; }
@media (min-width: 640px) { .cta-xl { font-size: 16px; padding: 18px 32px; } }

.cta-dark {
  background: var(--ink);
  color: var(--white);
  animation: none;
  font-size: 14px;
  padding: 14px 28px;
  margin-top: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.cta-dark:hover { background: var(--ink-deep); }

.trust-row {
  margin-top: 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(30,78,121,.1);
}
.trust-row > div { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.trust-row svg { width: 22px; height: 22px; color: var(--blue); }
.trust-row span { font-size: 11px; font-weight: 600; color: var(--ink); line-height: 1.1; }
@media (min-width: 640px) { .trust-row svg { width: 24px; height: 24px; } .trust-row span { font-size: 12px; } }

/* ==================== GARANTIA ==================== */
.guarantee {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; text-align: center;
  background: var(--bg);
  border-radius: 24px;
  padding: 24px;
  box-shadow: inset 0 0 0 1px rgba(34,197,94,.3);
}
.guarantee-icon {
  width: 80px; height: 80px; flex-shrink: 0;
  background: rgba(34,197,94,.15); color: var(--green-deep);
  border-radius: 18px;
  display: grid; place-items: center;
}
.guarantee-icon svg { width: 40px; height: 40px; }
.guarantee h3 { font-weight: 900; font-size: 22px; color: var(--ink); }
.guarantee p { margin-top: 8px; color: var(--ink-soft); font-size: 15px; }
@media (min-width: 640px) {
  .guarantee { flex-direction: row; text-align: left; padding: 32px; }
  .guarantee h3 { font-size: 26px; }
}

/* ==================== FAQ ==================== */
.faq { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(21,59,90,.05), inset 0 0 0 1px rgba(30,78,121,.1);
  overflow: hidden;
  transition: box-shadow .3s;
}
.faq-item.open { box-shadow: 0 8px 24px -8px rgba(21,59,90,.18), inset 0 0 0 1px rgba(232,176,74,.4); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; text-align: left;
  font-family: "Nunito", sans-serif; font-weight: 700;
  font-size: 15px; color: var(--ink);
}
.faq-chev {
  flex-shrink: 0; display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: 9999px;
  background: #F5F7FA; color: var(--blue);
  transition: background .3s, color .3s, transform .3s;
}
.faq-chev svg { width: 14px; height: 14px; }
.faq-item.open .faq-chev { background: var(--gold); color: var(--ink); transform: rotate(180deg); }
.faq-a {
  display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows .3s ease, opacity .3s ease;
}
.faq-a > p {
  overflow: hidden;
  padding: 0 20px;
  color: var(--ink-soft);
  font-size: 14px; line-height: 1.6;
  border-top: 1px solid transparent;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; opacity: 1; }
.faq-item.open .faq-a > p { padding: 12px 20px 16px; border-top-color: rgba(30,78,121,.1); }

/* ==================== FECHAMENTO ==================== */
.section-closing { padding: 72px 0; }
.hearts { display: flex; justify-content: center; align-items: center; gap: 8px; color: var(--gold); }
.hearts svg { width: 22px; height: 22px; }
.hearts svg.big { width: 26px; height: 26px; }
.closing-title { margin-top: 16px; font-weight: 900; font-size: 32px; line-height: 1.15; color: var(--ink); }
@media (min-width: 640px) { .closing-title { font-size: 48px; } }
.closing-lead { margin: 16px auto 0; max-width: 560px; font-size: 16px; color: var(--ink-soft); line-height: 1.65; }
.closing-bold { margin-top: 12px; font-family: "Nunito", sans-serif; font-weight: 700; color: var(--ink); }
.trust-row-inline { margin-top: 24px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; font-size: 13px; color: var(--ink-soft); }

/* ==================== FOOTER ==================== */
.site-footer { background: var(--ink-deep); color: var(--white); padding: 48px 0; }
.site-footer .container { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-logo { width: 220px; max-width: 80%; filter: drop-shadow(0 6px 18px rgba(0,0,0,.45)); }
.site-footer p { color: rgba(255,255,255,.7); font-size: 14px; max-width: 460px; text-align: center; }
.site-footer .copyright { color: rgba(255,255,255,.45); font-size: 12px; }

/* ==================== SALES NOTIFICATION ==================== */
.sales-notification {
  position: fixed; left: 12px; bottom: 12px; z-index: 60;
  max-width: 300px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  padding: 12px 16px 12px 12px;
  border-radius: 18px;
  box-shadow: 0 18px 40px -12px rgba(21,59,90,.28), inset 0 0 0 1px rgba(30,78,121,.1);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .5s ease, transform .5s ease;
}
.sales-notification.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
@media (min-width: 640px) { .sales-notification { left: 20px; bottom: 20px; max-width: 340px; } }
.sn-icon {
  position: relative; flex-shrink: 0;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--white);
  box-shadow: inset 0 -2px 4px rgba(0,0,0,.15);
}
.sn-icon svg { width: 20px; height: 20px; }
.sn-dot, .sn-dot-ping {
  position: absolute; top: -2px; right: -2px;
  width: 10px; height: 10px; border-radius: 9999px;
  background: var(--green);
  outline: 2px solid var(--white);
}
.sn-dot-ping { animation: ping 1.6s cubic-bezier(0,0,.2,1) infinite; }
.sn-body { min-width: 0; flex: 1; }
.sn-name { font-family: "Nunito", sans-serif; font-weight: 700; color: var(--ink); font-size: 13px; line-height: 1.1; }
.sn-uf { color: #475569; font-weight: 600; }
.sn-text { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.sn-time { font-size: 11px; color: var(--green-deep); font-weight: 600; margin-top: 2px; }

/* ==================== ANIMAÇÕES ==================== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fade-up .7s ease-out both; }

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-float-soft { animation: float-soft 6s ease-in-out infinite; }

@keyframes cta-pulse-green {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 12px 28px -8px rgba(40,167,69,.55), 0 0 0 0 rgba(40,167,69,.5);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 18px 38px -8px rgba(40,167,69,.7), 0 0 0 14px rgba(40,167,69,0);
  }
}

@keyframes ping {
  75%, 100% { transform: scale(2.4); opacity: 0; }
}

/* Reveal on scroll (JS toggles .visible) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
