/* =========================================================
   Raspa o Presente — design system
   ========================================================= */
:root {
  --wine: #5a0f1f;
  --wine-2: #7b1730;
  --wine-3: #3a0912;
  --wine-4: #2a060d;
  --cream: #fbf4ea;
  --paper: #f5ebdd;
  --paper-2: #ecdfcc;
  --line: #e2d2bc;
  --ink: #2b1016;
  --ink-2: #664750;
  --ink-3: #9a8083;
  --gold: #c49a3c;
  --gold-2: #e9d08c;
  --gold-3: #8a6a22;
  --rose: #f2c4c0;
  --ok: #2f7a4f;
  --ok-bg: #e3f1e7;
  --err: #b3261e;
  --err-bg: #fbe4e1;

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --r-sm: 10px;
  --r: 18px;
  --r-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(58, 9, 18, .06), 0 2px 8px rgba(58, 9, 18, .05);
  --shadow: 0 1px 2px rgba(58, 9, 18, .06), 0 10px 30px rgba(58, 9, 18, .10);
  --shadow-lg: 0 2px 6px rgba(58, 9, 18, .08), 0 30px 70px rgba(58, 9, 18, .24);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .35 0 0 0 0 .2 0 0 0 0 .1 0 0 0 .07 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream) var(--grain);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.05; letter-spacing: -.02em; margin: 0; font-variation-settings: 'opsz' 144, 'SOFT' 50; }
em { font-style: italic; }
::selection { background: var(--gold-2); color: var(--wine-3); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.container { width: min(1160px, 100% - 32px); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- botões ---------- */
.btn {
  --bg: var(--paper); --fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 48px; padding: 0 22px;
  border: 0; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  font-weight: 700; font-size: 15.5px; letter-spacing: -.005em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, opacity .2s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn[disabled] { opacity: .5; pointer-events: none; }
.btn-lg { min-height: 58px; padding: 0 30px; font-size: 16.5px; }
.btn-sm { min-height: 38px; padding: 0 15px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-primary {
  --bg: var(--wine); --fg: #fff7ea;
  background: linear-gradient(180deg, var(--wine-2), var(--wine));
  box-shadow: inset 0 0 0 1px rgba(233, 208, 140, .35), inset 0 1px 0 rgba(255, 255, 255, .15), 0 10px 24px -8px rgba(90, 15, 31, .6);
}
.btn-primary:hover { box-shadow: inset 0 0 0 1px rgba(233, 208, 140, .55), inset 0 1px 0 rgba(255, 255, 255, .15), 0 16px 32px -10px rgba(90, 15, 31, .7); }
.btn-gold {
  --fg: var(--wine-3);
  background: linear-gradient(180deg, #f3dc98, var(--gold));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 10px 24px -10px rgba(138, 106, 34, .8);
}
.btn-ghost { --bg: transparent; box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { --bg: rgba(255, 255, 255, .6); }
.btn-ghost-light { --bg: rgba(255, 255, 255, .08); --fg: #fff7ea; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .2); }
.btn-link { background: none; border: 0; padding: 6px 2px; font-weight: 700; font-size: 14px; color: var(--ink-2); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line); }
.btn-link:hover { color: var(--wine); text-decoration-color: currentColor; }
.btn-icon { width: 38px; height: 38px; min-height: 0; padding: 0; border-radius: 12px; --bg: transparent; }
.btn-icon:hover { --bg: var(--paper); transform: none; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- utilidades ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--wine-2);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(196, 154, 60, .2); }
.lead { font-size: clamp(17px, 1.6vw, 19.5px); color: var(--ink-2); line-height: 1.6; }
.muted { color: var(--ink-3); }

/* ---------- logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo svg { width: 34px; height: 34px; flex: none; }
.logo span { font-family: var(--display); font-weight: 600; font-size: 21px; letter-spacing: -.02em; font-style: italic; }
.logo b { font-style: normal; color: var(--wine-2); }

/* =========================================================
   LANDING
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 244, 234, .78);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.nav.scrolled { border-color: var(--line); }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a:not(.btn) { text-decoration: none; font-weight: 600; font-size: 14.5px; color: var(--ink-2); }
.nav-links a:not(.btn):hover { color: var(--wine); }

/* hero */
.hero { position: relative; padding: clamp(40px, 7vw, 90px) 0 clamp(60px, 8vw, 110px); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: -20% -10% auto auto; width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(closest-side, rgba(242, 196, 192, .55), rgba(242, 196, 192, 0));
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(44px, 6.4vw, 84px); margin: 18px 0 22px; }
.hero h1 em { color: var(--wine-2); font-weight: 500; }
.hero .lead { max-width: 33em; margin: 0 0 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; padding: 0; margin: 28px 0 0; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.hero-proof li { display: flex; align-items: center; gap: 7px; }
.hero-proof li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; background: var(--ok-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.2l2.2 2.2 4.8-4.8' fill='none' stroke='%232f7a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100%; }

.hero-visual { position: relative; display: grid; place-items: center; min-height: 560px; }
.phone {
  position: relative; width: 300px; aspect-ratio: 9 / 18.5; border-radius: 46px; padding: 11px;
  background: linear-gradient(145deg, #3a2226, #140709);
  box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgba(255, 255, 255, .08);
  transform: rotate(2.5deg);
}
.phone::before { content: ''; position: absolute; top: 20px; left: 50%; width: 88px; height: 25px; translate: -50% 0; border-radius: 20px; background: #0b0304; z-index: 3; }
.phone-screen {
  position: relative; height: 100%; border-radius: 36px; overflow: hidden;
  background: radial-gradient(120% 70% at 50% 0%, var(--wine-2), var(--wine) 45%, var(--wine-4));
  color: #fff7ea; padding: 64px 18px 18px; display: flex; flex-direction: column;
}
.mini-top { display: flex; justify-content: space-between; align-items: center; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .75; }
.mini-ok { color: var(--gold-2); }
.mini-title { font-family: var(--display); font-size: 25px; line-height: 1.1; margin: 16px 0 16px; font-weight: 500; }
.mini-hint { text-align: center; font-size: 12.5px; font-weight: 600; opacity: .65; margin: 12px 0 0; }
.hero-visual .scratch { flex: 1; }

.float-card {
  position: absolute; z-index: 4; display: flex; flex-direction: column; gap: 8px; max-width: 230px;
  background: #fffaf2; color: var(--ink); border-radius: 18px; padding: 14px 16px;
  box-shadow: var(--shadow); font-size: 13.5px; font-weight: 600; line-height: 1.35;
  animation: floaty 6s ease-in-out infinite;
}
.float-card small { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); font-weight: 800; }
.fc-1 { bottom: 150px; left: -18px; }
.fc-2 { top: 34px; right: -18px; animation-delay: -3s; }
.tag { align-self: flex-start; display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 800; padding: 4px 10px; border-radius: 999px; }
.tag.ok { background: var(--ok-bg); color: var(--ok); }
.tag.err { background: var(--err-bg); color: var(--err); }
@keyframes floaty { 50% { transform: translateY(-10px); } }

/* scratch */
.scratch { position: relative; border-radius: 22px; overflow: hidden; isolation: isolate; box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .55), inset 0 0 0 1px rgba(233, 208, 140, .4); }
.scratch-foil { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; touch-action: none; cursor: grab; transition: opacity .7s var(--ease), transform .7s var(--ease); }
.scratch-foil:active { cursor: grabbing; }
.scratch-foil.is-gone { opacity: 0; transform: scale(1.04); pointer-events: none; }
.prize-face {
  position: relative; height: 100%; min-height: 220px;
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 10px;
  padding: 26px 20px; color: var(--ink);
  background: radial-gradient(90% 70% at 50% 30%, #fffaf1, #f4e7d2);
}
.prize-face::after { content: ''; position: absolute; inset: 9px; border: 1.5px dashed rgba(196, 154, 60, .55); border-radius: 15px; pointer-events: none; }
.prize-kicker { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-3); }
.prize-face strong { font-family: var(--display); font-size: 27px; line-height: 1.08; font-weight: 600; color: var(--wine); }
.prize-sub { font-size: 14px; color: var(--ink-2); font-weight: 600; }
.prize-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px; margin-bottom: 6px; }

/* marquee de exemplos */
.band { background: var(--wine); color: #fff7ea; padding: 22px 0; overflow: hidden; border-block: 1px solid rgba(233, 208, 140, .25); }
.marquee { display: flex; gap: 14px; width: max-content; animation: marquee 48s linear infinite; }
.band:hover .marquee { animation-play-state: paused; }
.marquee span { display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; font-family: var(--display); font-style: italic; font-size: 21px; padding-right: 14px; }
.marquee span::after { content: '✦'; font-style: normal; color: var(--gold); font-size: 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* seções */
.section { padding: clamp(70px, 9vw, 120px) 0; }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(36px, 4.6vw, 58px); margin: 14px 0 16px; }
.section-head h2 em { color: var(--wine-2); font-weight: 500; }
.section-head p { margin: 0; }
.center { text-align: center; margin-inline: auto; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.step {
  position: relative; background: #fffaf3; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px 32px; box-shadow: var(--shadow-sm); overflow: hidden;
}
.step-n { font-family: var(--display); font-size: 64px; line-height: 1; font-weight: 500; font-style: italic; color: var(--gold); display: block; margin-bottom: 18px; }
.step h3 { font-size: 26px; margin-bottom: 10px; }
.step p { margin: 0; color: var(--ink-2); }
.step-ill { margin-top: 22px; background: var(--paper); border-radius: 14px; padding: 14px; font-size: 13.5px; font-weight: 600; display: grid; gap: 8px; }
.step-ill .q { font-family: var(--display); font-size: 17px; font-weight: 500; }
.fake-input { display: flex; justify-content: space-between; align-items: center; background: #fff; border: 1.5px solid var(--line); border-radius: 10px; padding: 9px 12px; color: var(--ink-2); }
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.chip-s { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; font-size: 12.5px; }
.wa-bubble { justify-self: end; background: #d9fdd3; color: #0b3b1f; border-radius: 12px 12px 3px 12px; padding: 9px 12px; max-width: 90%; box-shadow: 0 1px 1px rgba(0, 0, 0, .06); }
.wa-bubble u { color: #027eb5; }

/* vídeo (dark) */
.dark { background: radial-gradient(120% 80% at 80% 0%, var(--wine-2), var(--wine) 40%, var(--wine-4)); color: #fff7ea; position: relative; overflow: hidden; }
.dark .eyebrow { color: var(--gold-2); }
.dark .section-head h2 em { color: var(--gold-2); }
.dark .lead { color: rgba(255, 247, 234, .75); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feat-list { display: grid; gap: 14px; list-style: none; padding: 0; margin: 0; }
.feat-list li { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; padding: 18px; border-radius: 18px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(233, 208, 140, .15); }
.feat-ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-size: 22px; background: rgba(233, 208, 140, .14); }
.feat-list b { display: block; font-size: 16.5px; margin-bottom: 2px; }
.feat-list span { color: rgba(255, 247, 234, .7); font-size: 14.5px; }

.score-demo { background: #fffaf2; color: var(--ink); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-lg); transform: rotate(-1.5deg); max-width: 420px; margin-inline: auto; }
.score-demo h3 { font-size: 22px; margin-bottom: 18px; }
.score-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.score-cell { background: var(--paper); border-radius: 14px; padding: 14px 10px; text-align: center; }
.score-cell b { display: block; font-family: var(--display); font-size: 28px; font-weight: 600; color: var(--wine); line-height: 1.1; }
.score-cell span { font-size: 11.5px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; }
.score-verdict { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--wine); color: #fff7ea; border-radius: 14px; padding: 14px 16px; }
.score-verdict b { font-family: var(--display); font-size: 30px; font-weight: 600; color: var(--gold-2); }
.score-verdict span { font-size: 14px; font-weight: 600; }

/* preço */
.price-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.price-card { position: relative; background: #fffaf3; border: 1px solid var(--line); border-radius: 32px; padding: 38px; box-shadow: var(--shadow); }
.price-card::before { content: 'Especial de Natal'; position: absolute; top: -14px; left: 38px; background: linear-gradient(180deg, #f3dc98, var(--gold)); color: var(--wine-3); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.price { display: flex; align-items: baseline; gap: 6px; margin: 4px 0 6px; }
.price small { font-size: 20px; font-weight: 700; color: var(--ink-2); }
.price b { font-family: var(--display); font-size: 76px; line-height: 1; font-weight: 600; letter-spacing: -.03em; color: var(--wine); }
.price-note { color: var(--ink-3); font-size: 14px; margin: 0 0 24px; font-weight: 600; }
.checks { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 11px; }
.checks li { display: flex; gap: 11px; align-items: flex-start; font-weight: 600; font-size: 15px; }
.checks li::before { content: ''; flex: none; margin-top: 2px; width: 20px; height: 20px; border-radius: 50%; background: var(--wine) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.2l2.2 2.2 4.8-4.8' fill='none' stroke='%23e9d08c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100%; }

/* faq */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 10px; }
.faq details { background: #fffaf3; border: 1px solid var(--line); border-radius: 18px; padding: 0 22px; transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; font-weight: 700; font-size: 16.5px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--paper); font-size: 20px; font-weight: 500; color: var(--wine); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 20px; color: var(--ink-2); }

/* cta final */
.final { text-align: center; }
.final h2 { font-size: clamp(40px, 6vw, 76px); max-width: 14ch; margin: 18px auto 20px; }
.final h2 em { color: var(--gold-2); font-weight: 500; }
.final .lead { max-width: 34em; margin: 0 auto 34px; }

.footer { padding: 36px 0 110px; color: var(--ink-3); font-size: 14px; }
.footer .container { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.footer a { color: var(--ink-2); text-decoration: none; font-weight: 600; }

.mobile-cta { display: none; }

/* reveal on scroll */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.in { opacity: 1; transform: none; }

/* =========================================================
   FORMULÁRIOS (criador)
   ========================================================= */
.field { display: grid; gap: 8px; }
.field > label:not(.photo-drop), .label { font-weight: 700; font-size: 14.5px; display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.label small, .field > label:not(.photo-drop) small { font-weight: 600; color: var(--ink-3); font-size: 12.5px; }
.help { font-size: 13px; color: var(--ink-3); margin: 0; }
.input, .textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 14px; padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s;
}
.textarea { resize: vertical; min-height: 88px; line-height: 1.45; }
.input::placeholder, .textarea::placeholder { color: #b9a6a0; }
.input:focus, .textarea:focus, .chips:focus-within { outline: 0; border-color: var(--wine-2); box-shadow: 0 0 0 4px rgba(123, 23, 48, .12); }
.is-invalid, .is-invalid.chips { border-color: var(--err) !important; box-shadow: 0 0 0 4px rgba(179, 38, 30, .1) !important; }
.field-error { color: var(--err); font-size: 13px; font-weight: 700; margin: 0; }

.chips { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; background: #fff; border: 1.5px solid var(--line); border-radius: 14px; padding: 8px; min-height: 52px; cursor: text; transition: border-color .2s, box-shadow .2s; }
.chips input { flex: 1; min-width: 150px; border: 0; outline: 0; font: inherit; font-size: 16px; padding: 5px 6px; background: transparent; color: var(--ink); }
.chip { display: inline-flex; align-items: center; gap: 4px; background: var(--wine); color: #fff7ea; padding: 6px 6px 6px 12px; border-radius: 999px; font-size: 14px; font-weight: 700; animation: pop .25s var(--ease); }
.chip button { width: 22px; height: 22px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .16); color: #fff; cursor: pointer; display: grid; place-items: center; font-size: 14px; line-height: 1; padding: 0; }
.chip button:hover { background: rgba(255, 255, 255, .3); }
@keyframes pop { from { transform: scale(.7); opacity: 0; } }

.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.seg label { position: relative; display: grid; gap: 4px; padding: 16px; border: 1.5px solid var(--line); border-radius: 16px; background: #fff; cursor: pointer; transition: border-color .2s, box-shadow .2s, background .2s; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg b { font-size: 15px; }
.seg span { font-size: 13px; color: var(--ink-3); font-weight: 600; line-height: 1.35; }
.seg label:has(input:checked) { border-color: var(--wine); background: #fff8f4; box-shadow: 0 0 0 4px rgba(123, 23, 48, .1); }
.seg label:has(input:focus-visible) { outline: 3px solid var(--gold); outline-offset: 2px; }

.photo-drop {
  display: flex; align-items: center; gap: 14px; padding: 12px; border: 1.5px dashed var(--line); border-radius: 14px; background: rgba(255, 255, 255, .6);
  cursor: pointer; transition: border-color .2s, background .2s; font-weight: 700; font-size: 14px; color: var(--ink-2);
}
.photo-drop:hover { border-color: var(--wine-2); background: #fff; }
.photo-drop input { display: none; }
.photo-drop .ph { width: 56px; height: 56px; flex: none; border-radius: 11px; background: var(--paper); display: grid; place-items: center; overflow: hidden; }
.photo-drop .ph img { width: 100%; height: 100%; object-fit: cover; }
.photo-drop .ph svg { width: 22px; height: 22px; color: var(--ink-3); }
.photo-drop small { display: block; color: var(--ink-3); font-weight: 600; font-size: 12.5px; }
.photo-drop .rm { margin-left: auto; }

/* =========================================================
   CRIADOR
   ========================================================= */
.app-bar { position: sticky; top: 0; z-index: 40; background: rgba(251, 244, 234, .85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.app-bar .container { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.save-state { font-size: 13px; font-weight: 700; color: var(--ink-3); display: inline-flex; align-items: center; gap: 7px; }
.save-state::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); }

.stepper { display: flex; gap: 6px; list-style: none; margin: 30px 0 34px; padding: 0; counter-reset: st; }
.stepper li { flex: 1; }
.stepper button { width: 100%; display: grid; gap: 9px; text-align: left; background: none; border: 0; padding: 0; cursor: pointer; }
.stepper button::before { content: ''; height: 5px; border-radius: 99px; background: var(--paper-2); transition: background .35s var(--ease); }
.stepper .lbl { font-size: 13px; font-weight: 700; color: var(--ink-3); display: flex; gap: 6px; }
.stepper .lbl::before { counter-increment: st; content: counter(st) '.'; }
.stepper li.done button::before { background: var(--gold); }
.stepper li.active button::before { background: var(--wine); }
.stepper li.active .lbl, .stepper li.done .lbl { color: var(--ink); }

.builder { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 56px; align-items: start; padding-bottom: 130px; }
.pane { display: none; animation: paneIn .45s var(--ease); }
.pane.active { display: block; }
@keyframes paneIn { from { opacity: 0; transform: translateY(12px); } }
.pane-head { margin-bottom: 30px; }
.pane-head h1 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 10px; }
.pane-head h1 em { color: var(--wine-2); font-weight: 500; }
.pane-head p { margin: 0; color: var(--ink-2); font-size: 16.5px; }
.form-stack { display: grid; gap: 22px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.step-card { background: #fffaf3; border: 1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: var(--shadow-sm); display: grid; gap: 18px; animation: paneIn .4s var(--ease); scroll-margin-top: 90px; }
.step-card.focus { border-color: #d8bfa3; box-shadow: var(--shadow); }
.step-card header { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.step-badge { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 21px; font-weight: 600; }
.step-badge i { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; background: var(--wine); color: var(--gold-2); font-style: normal; font-family: var(--sans); font-size: 14px; font-weight: 800; }
.step-actions { display: flex; gap: 2px; }
.steps-list { display: grid; gap: 16px; }
.steps-foot { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.more { border-top: 1px dashed var(--line); padding-top: 16px; display: grid; gap: 16px; }

.ideas { margin-top: 14px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 16px; display: none; }
.ideas.open { display: block; animation: paneIn .3s var(--ease); }
.ideas p { margin: 0 0 10px; font-size: 13px; font-weight: 700; color: var(--ink-3); }
.ideas-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.ideas-grid button { border: 1.5px solid var(--line); background: var(--cream); border-radius: 999px; padding: 8px 14px; font-size: 14px; font-weight: 600; cursor: pointer; text-align: left; transition: border-color .2s, background .2s; }
.ideas-grid button:hover { border-color: var(--wine-2); background: #fff; }

.review { display: grid; gap: 12px; }
.review-item { display: grid; grid-template-columns: 34px 1fr auto; gap: 14px; align-items: center; background: #fffaf3; border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px; }
.review-item i { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--paper); font-style: normal; font-weight: 800; font-size: 14px; color: var(--wine); }
.review-item b { display: block; font-size: 15px; }
.review-item span { font-size: 13.5px; color: var(--ink-3); font-weight: 600; }
.review-item.prize i { background: var(--wine); color: var(--gold-2); }
.send-box { margin-top: 26px; background: var(--wine); color: #fff7ea; border-radius: 26px; padding: 28px; display: grid; gap: 16px; box-shadow: var(--shadow); }
.send-box h3 { font-size: 26px; }
.send-box p { margin: 0; color: rgba(255, 247, 234, .75); }
.send-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.builder-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; background: rgba(251, 244, 234, .92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--line); padding: 12px 0 calc(12px + env(safe-area-inset-bottom)); }
.builder-nav .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.builder-nav .count { font-size: 13px; font-weight: 700; color: var(--ink-3); }

/* preview lateral */
.side { position: sticky; top: 96px; }
.side-label { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); text-align: center; margin-bottom: 14px; }
.side .phone { width: 100%; max-width: 330px; margin-inline: auto; transform: none; }
.side .phone-screen { padding: 56px 16px 16px; overflow-y: auto; scrollbar-width: none; }
.side .phone-screen::-webkit-scrollbar { display: none; }
.side-actions { display: flex; justify-content: center; margin-top: 16px; }
.pv-h { font-family: var(--display); font-size: 27px; line-height: 1.08; font-weight: 500; margin: 12px 0 14px; }
.pv-h em { color: var(--gold-2); }
.pv-quote { font-family: var(--display); font-style: italic; font-size: 14.5px; line-height: 1.45; color: rgba(255, 247, 234, .8); margin: 0 0 18px; padding-left: 12px; border-left: 2px solid var(--gold); }
.pv-rule { font-size: 12.5px; font-weight: 600; background: rgba(255, 255, 255, .06); border: 1px solid rgba(233, 208, 140, .15); border-radius: 12px; padding: 10px 12px; margin-bottom: 8px; }
.pv-btn { margin-top: 14px; text-align: center; font-weight: 800; font-size: 14px; padding: 13px; border-radius: 999px; background: linear-gradient(180deg, #f3dc98, var(--gold)); color: var(--wine-3); }
.pv-btn-dark { background: linear-gradient(180deg, var(--wine-2), var(--wine)); color: #fff7ea; border-radius: 12px; margin-top: 8px; }
.pv-card { background: #fffaf2; color: var(--ink); border-radius: 22px; padding: 18px 16px 16px; box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .55); }
.pv-card img { width: 100%; max-height: 160px; object-fit: cover; border-radius: 12px; margin-top: 10px; }
.pv-q { font-family: var(--display); font-size: 21px; line-height: 1.15; font-weight: 500; margin: 10px 0 14px; overflow-wrap: anywhere; }
.pv-input { border: 1.5px solid var(--line); border-radius: 12px; padding: 11px 12px; font-size: 13.5px; color: var(--ink-3); background: #fff; }
.pv-hint { margin-top: 10px; background: #fff4d9; border: 1px solid #efd9a0; color: #6d5210; border-radius: 10px; padding: 9px 11px; font-size: 12.5px; font-weight: 600; }
.pv-note { text-align: center; font-size: 11.5px; font-weight: 700; opacity: .6; margin: 10px 0 14px; }
.pv-letter { background: #fffaf2; color: var(--ink); border-radius: 16px; padding: 14px; font-family: var(--display); font-style: italic; font-size: 14.5px; line-height: 1.45; white-space: pre-line; overflow-wrap: anywhere; }
.pv-letter span { display: block; margin-top: 8px; font-family: var(--sans); font-style: normal; font-weight: 700; font-size: 12px; color: var(--ink-3); }

/* modal */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 16px; background: rgba(42, 6, 13, .55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: fadeIn .25s; }
.modal[hidden] { display: none; }
.modal-card { position: relative; width: min(480px, 100%); max-height: calc(100dvh - 32px); overflow-y: auto; background: var(--cream); border-radius: 28px; padding: 32px 28px 28px; box-shadow: var(--shadow-lg); animation: modalIn .4s var(--ease); }
.modal-card h2 { font-size: 30px; margin: 10px 0 10px; }
.modal-card > p { color: var(--ink-2); margin: 0 0 20px; }
.modal-x { position: absolute; top: 14px; right: 14px; }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.97); } }
.link-box { display: flex; gap: 8px; align-items: center; background: #fff; border: 1.5px solid var(--line); border-radius: 14px; padding: 6px 6px 6px 14px; margin-bottom: 12px; }
.link-box code { flex: 1; font-size: 14px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: ui-monospace, 'Cascadia Code', Menlo, monospace; }
.demo-note { background: #fff4d9; border: 1px solid #efd9a0; color: #6d5210; border-radius: 14px; padding: 12px 14px; font-size: 13.5px; font-weight: 600; margin: 14px 0 0; }
.tips { margin: 18px 0 0; padding: 18px; background: var(--paper); border-radius: 18px; display: grid; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.tips b { color: var(--ink); font-size: 14.5px; }
.spinner { width: 18px; height: 18px; border-radius: 50%; border: 2.5px solid rgba(255, 255, 255, .3); border-top-color: currentColor; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.toast { position: fixed; left: 50%; bottom: 96px; z-index: 200; translate: -50% 20px; opacity: 0; background: var(--ink); color: #fff7ea; font-weight: 700; font-size: 14.5px; padding: 12px 18px; border-radius: 14px; box-shadow: var(--shadow-lg); transition: opacity .3s, translate .3s var(--ease); pointer-events: none; max-width: calc(100% - 32px); text-align: center; }
.toast.show { opacity: 1; translate: -50% 0; }

/* =========================================================
   JOGO (quem recebe)
   ========================================================= */
.play {
  min-height: 100dvh;
  background: var(--wine-4);
  color: #fff7ea;
  display: flex; flex-direction: column;
}
/* gradiente numa camada fixa (background-attachment: fixed falha no iOS) */
.sparkles { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; background: radial-gradient(130% 70% at 50% -10%, var(--wine-2), var(--wine) 42%, var(--wine-4) 100%); }
.play::before { content: ''; position: fixed; inset: 0; z-index: 1; background: var(--grain); opacity: .5; pointer-events: none; }
.sparkles i { position: absolute; top: -10px; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-2); opacity: .0; animation: fall linear infinite; box-shadow: 0 0 8px rgba(233, 208, 140, .8); }
@keyframes fall { 10% { opacity: .7; } 90% { opacity: .5; } to { transform: translate3d(var(--dx, 20px), 105vh, 0); opacity: 0; } }

.play-top { position: relative; z-index: 2; width: min(560px, 100% - 32px); margin: 0 auto; padding: 18px 0 0; display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 58px; }
.play-top .logo span { font-size: 17px; color: #fff7ea; }
.play-top .logo b { color: var(--gold-2); }
.play-top .logo svg { width: 26px; height: 26px; }
.timer { font-variant-numeric: tabular-nums; font-weight: 800; font-size: 13.5px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(233, 208, 140, .2); padding: 6px 12px; border-radius: 999px; }
.preview-flag { background: var(--gold-2); color: var(--wine-3); font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }

.play-main { position: relative; z-index: 2; flex: 1; width: min(560px, 100% - 32px); margin: 0 auto; display: flex; flex-direction: column; justify-content: center; padding: 22px 0 40px; }
.screen { animation: screenIn .6s var(--ease) both; }
.screen.out { animation: screenOut .35s var(--ease) both; }
@keyframes screenIn { from { opacity: 0; transform: translateY(26px) scale(.98); filter: blur(4px); } }
@keyframes screenOut { to { opacity: 0; transform: translateY(-18px) scale(.98); filter: blur(4px); } }

.play .eyebrow { color: var(--gold-2); }
.play h1 { font-size: clamp(38px, 10vw, 58px); margin: 16px 0 18px; font-weight: 500; }
.play h1 em { color: var(--gold-2); }
.intro-quote { font-family: var(--display); font-style: italic; font-size: 20px; line-height: 1.45; color: rgba(255, 247, 234, .85); margin: 0 0 28px; padding-left: 18px; border-left: 2px solid var(--gold); }
.rules { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 10px; }
.rules li { display: flex; gap: 14px; align-items: center; background: rgba(255, 255, 255, .06); border: 1px solid rgba(233, 208, 140, .15); padding: 13px 16px; border-radius: 16px; font-weight: 600; font-size: 15px; }
.rules li span { font-size: 20px; width: 26px; text-align: center; }
.rec-tip { text-align: center; font-size: 13.5px; font-weight: 600; color: rgba(255, 247, 234, .6); margin: 14px 0 0; }

.progress { display: flex; gap: 6px; margin-bottom: 26px; }
.progress i { flex: 1; height: 6px; border-radius: 99px; background: rgba(255, 255, 255, .12); overflow: hidden; position: relative; }
.progress i.done { background: var(--gold); }
.progress i.cur::after { content: ''; position: absolute; inset: 0; width: 45%; border-radius: inherit; background: var(--gold-2); animation: pulse 1.6s ease-in-out infinite; }
.progress i.gift { flex: .5; background: rgba(233, 208, 140, .25); }
@keyframes pulse { 50% { opacity: .4; } }

.q-card { background: #fffaf2; color: var(--ink); border-radius: 30px; padding: 26px 22px 22px; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .55); }
.q-card.shake { animation: shake .5s; }
@keyframes shake { 20%, 60% { transform: translateX(-9px) rotate(-1deg); } 40%, 80% { transform: translateX(9px) rotate(1deg); } }
.q-num { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-3); }
.q-img { width: 100%; max-height: 300px; object-fit: cover; border-radius: 18px; margin: 14px 0 4px; }
.q-text { font-family: var(--display); font-size: clamp(26px, 7vw, 34px); line-height: 1.12; font-weight: 500; margin: 12px 0 22px; letter-spacing: -.015em; }
.answer-row { display: flex; gap: 8px; }
.answer-row .input { font-size: 17px; padding: 15px 16px; border-radius: 16px; }
.answer-row .btn { min-height: 56px; border-radius: 16px; padding: 0 20px; }
.feedback { min-height: 26px; margin: 14px 2px 0; font-weight: 700; font-size: 15px; }
.feedback.err { color: var(--err); animation: pop .3s var(--ease); }
.feedback.ok { color: var(--ok); animation: pop .3s var(--ease); }
.hint-box { margin-top: 12px; background: #fff4d9; border: 1px solid #efd9a0; color: #6d5210; border-radius: 14px; padding: 12px 14px; font-weight: 600; font-size: 14.5px; animation: pop .3s var(--ease); }
.q-actions { display: flex; flex-wrap: wrap; gap: 4px 16px; margin-top: 8px; }
.q-card.correct { box-shadow: 0 0 0 4px rgba(47, 122, 79, .5), 0 30px 60px -20px rgba(0, 0, 0, .55); transition: box-shadow .3s; }
.correct-burst { position: absolute; }

.final-head { text-align: center; margin-bottom: 22px; }
.final-head h1 { margin: 12px 0 6px; font-size: clamp(34px, 9vw, 50px); }
.final-head p { margin: 0; color: rgba(255, 247, 234, .7); font-weight: 600; }
.play .scratch { min-height: 340px; }
.play .prize-face { min-height: 340px; padding: 30px 24px; }
.play .prize-face strong { font-size: clamp(28px, 7.5vw, 36px); }
.reveal-help { text-align: center; margin-top: 12px; }
.reveal-help .btn-link { color: rgba(255, 247, 234, .6); text-decoration-color: rgba(255, 247, 234, .3); }
.after { display: grid; gap: 16px; margin-top: 18px; }
.after > * { animation: screenIn .7s var(--ease) both; }
.after > *:nth-child(2) { animation-delay: .15s; }
.after > *:nth-child(3) { animation-delay: .3s; }
.letter { background: #fffaf2; color: var(--ink); border-radius: 24px; padding: 24px; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5); }
.letter p { font-family: var(--display); font-style: italic; font-size: 20px; line-height: 1.5; margin: 0; white-space: pre-line; }
.letter .sig { display: block; margin-top: 14px; font-family: var(--sans); font-style: normal; font-weight: 700; font-size: 14px; color: var(--ink-3); }
.play .score-demo { transform: none; max-width: none; margin-inline: 0; }
.play .score-demo .eyebrow, .play .letter .eyebrow { color: var(--wine-2); }
.progress i.gift.cur { background: var(--gold-2); box-shadow: 0 0 12px rgba(233, 208, 140, .7); }
.viral { text-align: center; padding: 22px; border-radius: 24px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(233, 208, 140, .2); }
.viral p { margin: 0 0 14px; font-weight: 600; color: rgba(255, 247, 234, .8); }

.state { text-align: center; }
.state .big { font-size: 58px; margin-bottom: 8px; }
.state h1 { font-size: clamp(32px, 8vw, 44px); }
.state p { color: rgba(255, 247, 234, .75); margin: 0 auto 26px; max-width: 30em; }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid, .video-grid, .price-wrap { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { min-height: 520px; }
  .steps { grid-template-columns: 1fr; }
  .builder { grid-template-columns: 1fr; }
  .side { display: none; }
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .hero { padding-top: 26px; }
  .hero-cta .btn { width: 100%; }
  .hero-visual { min-height: 500px; }
  .phone { width: 262px; }
  .fc-1 { left: 0; bottom: 6px; max-width: 180px; }
  .fc-2 { right: 0; top: 10px; max-width: 170px; }
  .price-card { padding: 32px 22px; }
  .price b { font-size: 64px; }
  .row-2, .seg { grid-template-columns: 1fr; }
  .step-card { padding: 18px; }
  .stepper { margin: 22px 0 26px; }
  .mobile-cta {
    display: block; position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 60;
    transform: translateY(140%); transition: transform .45s var(--ease);
  }
  .mobile-cta.show { transform: none; }
  .mobile-cta .btn { width: 100%; box-shadow: 0 16px 40px -10px rgba(58, 9, 18, .7), inset 0 0 0 1px rgba(233, 208, 140, .35); }
  .answer-row { flex-direction: column; }
  .answer-row .btn { width: 100%; }
  .modal { align-items: end; padding: 0; }
  .modal-card { border-radius: 28px 28px 0 0; padding-bottom: calc(28px + env(safe-area-inset-bottom)); }
  .builder-nav .count { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .rv { opacity: 1; transform: none; }
}
