:root {
  --bg: #1b1014;
  --bg-soft: #2a1820;
  --card: #351e28;
  --ink: #f7efe8;
  --muted: #c9b3b0;
  --accent: #e8a07a;
  --accent-2: #f3c6a3;
  --line: rgba(243, 198, 163, 0.18);
  --ok: #8fd3a8;
  --danger: #e08b8b;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --radius: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Source Sans 3", sans-serif;
  background:
    radial-gradient(900px 500px at 10% -10%, #4a2433 0%, transparent 55%),
    radial-gradient(700px 400px at 110% 10%, #2d3a3a 0%, transparent 50%),
    var(--bg);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100vh;
}

a { color: var(--accent-2); text-decoration: none; }
img { max-width: 100%; }

.topbar, .footer {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 8px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
}
.brand img { width: 36px; height: 36px; }
.topbar nav { display: flex; gap: 18px; }

main { width: min(1100px, calc(100% - 32px)); margin: 0 auto 72px; }

.hero, .card, .panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 40%), var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero {
  margin-top: 28px;
  padding: 42px 36px 36px;
}
.hero h1, h1, h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 4.2rem); margin: 0 0 14px; }
.lead, .muted { color: var(--muted); }
.price {
  display: inline-block;
  margin: 18px 0 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(232, 160, 122, 0.14);
  color: var(--accent-2);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #2a1412;
  font-weight: 700;
  cursor: pointer;
}
.btn.secondary { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.grid { display: grid; gap: 16px; margin-top: 28px; }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card { padding: 22px; }
.card h3 { margin: 0 0 8px; font-family: "Cormorant Garamond", serif; font-size: 1.5rem; }

.steps { counter-reset: step; }
.steps li { margin: 0 0 10px; }
.faq details { border-top: 1px solid var(--line); padding: 14px 0; }
.faq summary { cursor: pointer; font-weight: 600; }

.panel { padding: 28px; margin-top: 28px; }
.progress { height: 8px; background: #22151b; border-radius: 99px; overflow: hidden; }
.progress > span { display: block; height: 100%; width: 0; background: var(--accent); transition: width .25s ease; }
.step-title { font-size: 1.7rem; margin: 18px 0 8px; }
.choices { display: flex; flex-wrap: wrap; gap: 10px; }
.choice, input[type="text"], textarea, select {
  border: 1px solid var(--line);
  background: #2a1820;
  color: var(--ink);
  border-radius: 14px;
}
.choice {
  padding: 12px 14px;
  cursor: pointer;
}
.choice.active { border-color: var(--accent); background: rgba(232, 160, 122, 0.12); }
label { display: block; margin: 14px 0 6px; font-weight: 600; }
input[type="text"], textarea, select {
  width: 100%;
  padding: 14px;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }

.player {
  width: 100%;
  margin: 16px 0;
}
.notice { padding: 12px 14px; border-radius: 12px; background: rgba(232, 160, 122, 0.1); }
.error { color: var(--danger); }
.ok { color: var(--ok); }
.pix-box {
  font-size: 1.15rem;
  word-break: break-all;
  padding: 16px;
  border-radius: 14px;
  background: #22151b;
}

.footer { padding: 18px 0 40px; color: var(--muted); }
.footer p { margin: 8px 0; }
.footer a { margin-right: 14px; }

@media (max-width: 720px) {
  .hero { padding: 28px 20px; }
  .topbar nav a:first-child { display: none; }
}
