/* ===== tokens ===== */
:root {
  color-scheme: light;
  --bg: #fff8f4;
  --surface: #ffffff;
  --surface-soft: #fff0ea;
  --ink: #1e1824;
  --muted: #6f6477;
  --line: #eadbd2;
  --accent: #c93a4d;
  --accent-2: #d58b2a;
  --accent-dark: #942536;
  --green: #10a66a;
  --amber: #f59f00;
  --shadow: 0 20px 56px rgba(81, 45, 32, 0.13);
}

/* ===== base ===== */

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.22;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(201, 58, 77, 0.16);
  border-color: var(--accent);
}

/* ===== layout ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 68px);
  background: rgba(255, 248, 244, 0.88);
  border-bottom: 1px solid rgba(234, 219, 210, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 12px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav-cta {
  color: var(--accent);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  min-height: calc(100vh - 65px);
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 68px);
}

.hero-player {
  display: grid;
  gap: 18px;
}

.pain-section,
.steps-section,
.examples-section,
.pricing-section,
.proof-section,
.builder-section,
.faq-section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 68px);
}

.pain-section,
.examples-section,
.faq-section {
  background: #fff;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.52fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  background: var(--surface-soft);
}

.pain-section h2,
.section-heading h2,
.proof-section h2 {
  max-width: 820px;
}

.builder-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(320px, 0.62fr);
  gap: 28px;
  align-items: start;
}

.builder-copy {
  position: sticky;
  top: 96px;
}

.builder-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 68px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.focus-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 248, 244, 0.9), rgba(255, 240, 234, 0.96)),
    var(--bg);
}

.focus-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 5vw, 68px);
  color: var(--muted);
}

.focus-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(320px, 0.58fr);
  gap: 28px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 40px);
}

.focus-intro {
  position: sticky;
  top: 32px;
}

.focus-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.center-stage {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.preview-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(280px, 0.38fr);
  gap: 24px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 68px) clamp(18px, 5vw, 40px);
}

.delivery-shell {
  display: grid;
  grid-template-columns: min(760px, 100%);
  justify-content: center;
  align-content: center;
  min-height: calc(100vh - 76px);
  padding: clamp(28px, 5vw, 68px) 18px;
}

/* ===== components ===== */
.eyebrow,
.pill {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.quiz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin: 30px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.primary:hover {
  filter: brightness(0.96);
}

/* CTAs de conversão: maiores e chamando atenção */
.hero-actions .button.primary,
.final-cta .button.primary,
.price-card .button.primary,
.examples-cta .button.primary {
  min-height: 60px;
  padding: 0 32px;
  font-size: 18px;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 30px rgba(201, 58, 77, 0.34);
  animation: ctaPulse 2.4s ease-in-out infinite;
}

.hero-actions .button.primary:hover,
.final-cta .button.primary:hover,
.price-card .button.primary:hover,
.examples-cta .button.primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  animation-play-state: paused;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 14px 30px rgba(201, 58, 77, 0.30); }
  50% { box-shadow: 0 16px 40px rgba(201, 58, 77, 0.55); }
}

.examples-cta {
  margin-top: 36px;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .hero-actions .button.primary,
  .final-cta .button.primary,
  .price-card .button.primary,
  .examples-cta .button.primary {
    animation: none;
  }
}

.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.checkout {
  background: var(--green);
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}

.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.cover-card {
  display: grid;
  min-height: 360px;
  align-content: end;
  gap: 8px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(49, 31, 25, 0) 38%, rgba(49, 31, 25, 0.66)),
    url("../img/hero-1.jpg?v=16") center/cover;
  color: #fff;
  box-shadow: var(--shadow);
}

.cover-card span {
  font-size: 18px;
  font-weight: 800;
}

.cover-card strong {
  max-width: 320px;
  font-size: 32px;
  line-height: 1.05;
}

.player-card,
.pain-grid article,
.steps-grid article,
.example-grid article,
.proof-grid article,
.funnel-card,
.generation-panel,
.result-panel,
.preview-player,
.checkout-box,
.lyrics-box,
.faq-section details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.player-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.preview-cta {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.preview-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 64px rgba(81, 45, 32, 0.18);
}

.preview-cta .cover-card {
  min-height: 260px;
}

.player-hint {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff4df;
  color: #c57500;
}

.wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 54px;
}

.wave span {
  display: block;
  width: 10%;
  max-width: 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.wave span:nth-child(1) { height: 16px; }
.wave span:nth-child(2) { height: 34px; }
.wave span:nth-child(3) { height: 22px; }
.wave span:nth-child(4) { height: 48px; }
.wave span:nth-child(5) { height: 28px; }
.wave span:nth-child(6) { height: 42px; }
.wave span:nth-child(7) { height: 20px; }
.wave span:nth-child(8) { height: 36px; }

.wave.active span {
  animation: bounce 0.8s ease-in-out infinite alternate;
}

.wave.active span:nth-child(2n) {
  animation-delay: 0.16s;
}

.round-play {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  justify-self: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 12px 24px rgba(201, 58, 77, 0.22);
  cursor: pointer;
}

.round-play.big {
  width: 78px;
  height: 78px;
  font-size: 16px;
}

.player-time,
.progress-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.pain-grid,
.steps-grid,
.example-grid,
.proof-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.pain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid,
.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.example-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pain-grid article,
.steps-grid article,
.example-grid article,
.proof-grid article {
  padding: 24px;
}

.pain-grid span,
.steps-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--accent);
  font-weight: 900;
}

.proof-section {
  background: #2a211d;
  color: #fff;
}

.proof-section .eyebrow {
  color: #ff9f76;
}

.proof-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.proof-grid p {
  color: #efe8f3;
}

.stars {
  margin-bottom: 12px;
  color: #ffd166;
  letter-spacing: 0;
}

.faq-section {
  display: grid;
  gap: 12px;
}

.faq-section h2 {
  text-align: center;
}

.faq-section details {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 18px 20px;
  box-shadow: none;
}

.faq-section summary {
  font-weight: 900;
  cursor: pointer;
}

.faq-section p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  display: grid;
  justify-items: center;
  padding: clamp(58px, 8vw, 110px) 18px;
  text-align: center;
}

.final-cta h2 {
  max-width: 720px;
}

.delivery-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  width: min(760px, 100%);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.delivery-card audio {
  width: 100%;
}

.gift-cta {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-top: 24px;
  padding: 22px;
  border-radius: 12px;
  background: var(--surface-soft);
  text-align: center;
}

.gift-cta p {
  margin: 0;
  max-width: 360px;
  color: var(--muted);
}

.lyrics-box {
  padding: 18px 20px;
}

.lyrics-box summary {
  font-weight: 900;
  cursor: pointer;
}

.lyrics-box p {
  margin: 14px 0;
  white-space: pre-line;
  line-height: 1.6;
  color: var(--ink);
}

.delivery-card > p:not(.eyebrow) {
  color: var(--muted);
}

.delivery-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pricing-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.price-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.price-label {
  margin-bottom: -4px;
  color: var(--muted);
  font-weight: 800;
}

.price-anchor {
  display: grid;
  gap: 2px;
}

.price-anchor span {
  color: var(--muted);
  font-size: 18px;
  text-decoration: line-through;
}

.price-anchor strong {
  color: var(--green);
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.legal-page {
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 68px);
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.legal-card h2 {
  margin-top: 30px;
  font-size: 24px;
}

.legal-card p {
  color: var(--muted);
}

.legal-updated {
  margin-top: 34px;
  font-size: 14px;
}

@keyframes bounce {
  from { transform: scaleY(0.65); opacity: 0.72; }
  to { transform: scaleY(1.08); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.72; }
}

/* ===== funnel ===== */
.funnel-card,
.generation-panel,
.result-panel {
  padding: 24px;
}

.progress-wrap {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.progress-top {
  font-size: 14px;
  font-weight: 800;
}

.progress-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9e0ef;
}

.progress-track.large {
  height: 12px;
}

.progress-track span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.25s ease;
}

.quiz {
  display: grid;
  gap: 22px;
}

.quiz-step {
  display: none;
  gap: 18px;
}

.quiz-step.active {
  display: grid;
}

.quiz-step > p {
  color: var(--muted);
}

.option-grid,
.field-grid {
  display: grid;
  gap: 12px;
}

.option-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.option-grid label {
  display: grid;
  cursor: pointer;
}

.option-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-grid span {
  display: grid;
  min-height: 62px;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.option-grid input:checked + span {
  border-color: var(--accent);
  background: var(--surface-soft);
  color: var(--accent);
}

.field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-grid [hidden] {
  display: none;
}

.quiz label:not(.option-grid label),
.field-grid label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.chips input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chips label {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  text-align: center;
  cursor: pointer;
}

.chips input:checked + label {
  border-color: var(--accent);
  background: var(--surface-soft);
  color: var(--accent);
}

.quiz-actions {
  justify-content: space-between;
  padding-top: 6px;
}

.quiz-actions .primary,
.quiz-actions .secondary {
  min-width: 150px;
}

.generation-panel,
.result-panel {
  grid-column: 2;
}

.loader-note {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 34px 18px;
  text-align: center;
}

.loader-note p {
  max-width: 420px;
  color: var(--muted);
}

.pulse {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 58, 77, 0.16);
  box-shadow: inset 0 0 0 12px rgba(201, 58, 77, 0.12);
  animation: pulse 1s ease-in-out infinite;
}

.result-panel {
  display: grid;
  gap: 18px;
}

.generation-panel.visible,
.result-panel.visible {
  display: grid;
}

.result-heading {
  text-align: center;
}

.result-heading p:not(.eyebrow) {
  color: var(--muted);
}

.preview-player {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.scarcity-box {
  padding: 16px;
  border: 1px solid #ffc9c9;
  border-radius: 8px;
  background: #fff1f1;
  color: #d92d20;
  text-align: center;
  font-size: 18px;
}

.lyrics-box {
  padding: 16px 18px;
}

.lyrics-box summary {
  font-weight: 900;
  cursor: pointer;
}

.lyrics-box p {
  margin: 14px 0 0;
  color: var(--muted);
}

.checkout-box {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-color: #e2cdbd;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 18px;
}

.price-row strong {
  color: var(--green);
  white-space: nowrap;
}

.price-row s {
  color: var(--muted);
  font-size: 15px;
}

.checkout-box ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.secure-note {
  margin: -2px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.checkout-fields {
  display: grid;
  gap: 10px;
}

.checkout-fields label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}

.checkout-fields input {
  width: 100%;
}

.pix-panel {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.pix-title {
  margin: 0;
  font-weight: 800;
}

.pix-qr {
  width: 220px;
  height: 220px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.pix-or {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pix-code-row {
  display: flex;
  gap: 8px;
  width: 100%;
}

.pix-code {
  flex: 1;
  min-width: 0;
  font-size: 12px;
}

.pix-status {
  margin: 4px 0 0;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}

.conta-shell {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 20px;
  min-height: calc(100dvh - 80px);
  display: grid;
  align-content: safe center;
  gap: 16px;
}

.conta-shell h1 {
  margin-bottom: 8px;
  font-size: clamp(26px, 6vw, 34px);
}

#contaLogin {
  display: grid;
  gap: 14px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.conta-shell label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
}

.conta-shell input {
  width: 100%;
}

.muted-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.conta-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 14px;
}

.conta-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.conta-head strong {
  flex: 1;
  min-width: 0;
}

.conta-actions,
.conta-video {
  display: grid;
  gap: 8px;
}

.badge {
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.badge.ok {
  background: #e7f6ec;
  color: var(--green);
}

.badge.pending {
  background: #fff1f1;
  color: #d92d20;
}

.conta-cta {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.microcopy {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
}

.upsell {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.upsell-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.upsell-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.upsell-card.hero {
  border-color: var(--accent);
  background: var(--surface-soft);
}

.upsell-card strong {
  font-size: 17px;
}

.upsell-card p {
  margin: 0;
  color: var(--muted);
}

.upsell-card.soft {
  background: #fff;
  border-style: dashed;
  opacity: 0.92;
}

.upsell-how {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  color: var(--ink) !important;
  font-size: 13px;
}

.pix-next {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 640px) {
  .upsell-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== responsive ===== */
@media (max-width: 960px) {
  .hero,
  .builder-section,
  .focus-shell,
  .preview-shell,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .builder-copy {
    position: static;
  }

  .focus-intro {
    position: static;
  }

  .generation-panel,
  .result-panel {
    grid-column: auto;
  }

  .pain-grid,
  .steps-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .example-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 13px;
  }

  h1 {
    font-size: 42px;
  }

  .cover-card {
    min-height: 300px;
  }

  .option-grid,
  .field-grid,
  .chips {
    grid-template-columns: 1fr;
  }

  .example-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .example-grid article {
    padding: 16px;
  }

  .quiz-actions {
    display: grid;
  }

  .quiz-actions .primary,
  .quiz-actions .secondary {
    width: 100%;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .delivery-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav a[href^="#"] {
    display: none;
  }

  .topbar {
    align-items: center;
    padding: 12px 18px;
  }

  .focus-header,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  /* Login confortável no mobile: card no topo, largura cheia, respiro generoso */
  .conta-shell {
    min-height: auto;
    align-content: start;
    padding: 22px 14px 56px;
    gap: 18px;
  }

  #contaLogin {
    padding: 30px 22px 34px;
    border-radius: 18px;
  }

  .conta-shell h1 {
    font-size: 30px;
  }

  .conta-shell input {
    min-height: 56px;
  }

  .conta-shell .button {
    min-height: 56px;
  }
}
