/* ═══════════════════════════════════════════════════════════════
   OAB em 30 Dias — Landing Page
   Estética: Editorial jurídica moderna. Escuro + âmbar.
   Fonts: DM Serif Display (headlines) + DM Sans (corpo)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg-primary: #0f0f12;
  --bg-secondary: #18181d;
  --bg-card: #1e1e25;
  --bg-card-hover: #25252e;
  --text-primary: #f0ede6;
  --text-secondary: #a8a4a0;
  --text-muted: #6b6762;
  --accent: #d4a853;
  --accent-hover: #e6bc6a;
  --accent-soft: rgba(212, 168, 83, 0.12);
  --border: rgba(212, 168, 83, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */

.hero {
  padding: 88px 0 42px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.15rem, 5.4vw, 3.65rem);
  color: var(--accent);
  margin-bottom: 18px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.hero-problem {
  max-width: 700px;
  margin: 0 auto 18px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2.25rem);
  line-height: 1.18;
  text-wrap: balance;
}

.hero-sub {
  font-size: 1.04rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 14px;
  line-height: 1.7;
  text-wrap: balance;
}

.hero-visual {
  position: relative;
  width: min(100%, 680px);
  height: clamp(430px, 46vw, 560px);
  margin: 16px auto 58px;
  isolation: isolate;
  pointer-events: none;
}

.hero-visual::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(760px, 80vw);
  height: min(420px, 42vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 168, 83, 0.14) 0%, rgba(212, 168, 83, 0.04) 42%, transparent 72%);
  filter: blur(8px);
  z-index: -1;
}

.hero-phone {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  object-fit: contain;
  user-select: none;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.42));
}

.hero-phone-main {
  left: 50%;
  top: -2%;
  width: min(68vw, 660px);
  transform: translateX(-50%);
  z-index: 2;
}

.hero-phone-questions {
  display: none;
}

.hero-phone-mockup {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(58vw, 560px);
  height: 100%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-phone-shell {
  position: absolute;
  left: 50%;
  top: 4%;
  width: min(38vw, 300px);
  aspect-ratio: 0.465;
  padding: 14px;
  border-radius: 48px;
  background: linear-gradient(145deg, #36363d 0%, #0a0a0d 36%, #050506 70%, #34343a 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 6px rgba(0, 0, 0, 0.84),
    0 34px 80px rgba(0, 0, 0, 0.48);
  transform: translateX(-50%) rotate(-7deg);
}

.hero-phone-shell::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 13px;
  width: 76px;
  height: 18px;
  border-radius: 999px;
  background: #050506;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: var(--bg-primary);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 22px 18px 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.mock-logo {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.mock-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 700;
}

.mock-progress i {
  display: block;
  width: 48px;
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--bg-card);
}

.mock-progress b {
  display: block;
  width: 28%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.mock-content {
  padding: 28px 20px 0;
  text-align: left;
}

.mock-greeting {
  margin-bottom: 22px;
}

.mock-greeting h3,
.mock-card h4,
.mock-flex h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
}

.mock-greeting h3 {
  margin-bottom: 7px;
  font-size: 1.55rem;
}

.mock-greeting p,
.mock-card p,
.mock-flex p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.72rem;
  line-height: 1.5;
}

.mock-card,
.mock-flex {
  border-radius: 14px;
  background: var(--bg-card);
}

.mock-card {
  padding: 22px 19px;
  border: 1px solid var(--border);
}

.mock-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mock-card-top span,
.mock-flex span,
.mock-float span {
  color: var(--accent);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-card-top em {
  max-width: 92px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--text-muted);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 700;
}

.mock-card h4 {
  margin-bottom: 7px;
  font-size: 1.25rem;
}

.mock-card strong,
.mock-flex strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 17px;
  padding: 0 18px;
  border-radius: 7px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 0.68rem;
  font-weight: 900;
}

.mock-flex {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.11), rgba(255, 255, 255, 0.03));
}

.mock-flex h4 {
  margin: 5px 0 5px;
  font-size: 1rem;
}

.mock-flex strong {
  min-height: 28px;
  margin-top: 12px;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  color: var(--accent);
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.mock-stats div {
  min-height: 56px;
  padding: 9px 4px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--bg-card);
  text-align: center;
}

.mock-stats strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
}

.mock-stats span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.54rem;
  line-height: 1.15;
}

.mock-badge,
.mock-float {
  position: absolute;
  z-index: 3;
}

.mock-badge {
  right: 11%;
  top: 28%;
  width: 86px;
  height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 22px 54px rgba(212, 168, 83, 0.25);
  transform: rotate(9deg);
}

.mock-badge strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 0.92;
}

.mock-badge span {
  width: 58px;
  font-size: 0.48rem;
  font-weight: 900;
  line-height: 1.12;
}

.mock-float {
  width: 166px;
  padding: 13px 14px;
  border: 1px solid rgba(212, 168, 83, 0.24);
  border-radius: 12px;
  background: rgba(30, 30, 37, 0.94);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
  text-align: left;
}

.mock-float p {
  margin: 4px 0 0;
  color: var(--text-primary);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.28;
}

.mock-float-left {
  left: 12%;
  top: 59%;
  transform: rotate(-13deg);
}

.mock-float-right {
  right: 5%;
  top: 52%;
  transform: rotate(5deg);
}

.btn-primary {
  position: relative;
  z-index: 5;
  display: inline-block;
  padding: 18px 40px;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.25);
}

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

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-0.4deg);
  }

  50% {
    transform: translateX(-50%) translateY(-12px) rotate(0.4deg);
  }
}

@keyframes heroGlow {
  0%,
  100% {
    opacity: 0.78;
    transform: translate(-50%, -50%) scale(0.96);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-phone-main,
  .hero-visual::before {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PROVA SOCIAL
   ═══════════════════════════════════════════════════════════════ */

.social-proof {
  padding: 60px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.product-video-section {
  padding: 76px 0 64px;
  background: var(--bg-primary);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.proof-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 4px;
}

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

/* ═══════════════════════════════════════════════════════════════
   PROBLEMA
   ═══════════════════════════════════════════════════════════════ */

.problem {
  padding: 100px 0;
}

.problem h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  text-align: center;
  margin-bottom: 48px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s;
}

.problem-card:hover {
  border-color: var(--border);
}

.problem-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.problem-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.problem-conclusion {
  text-align: center;
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   SOLUÇÃO
   ═══════════════════════════════════════════════════════════════ */

.solution {
  padding: 100px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.solution .container {
  max-width: 1040px;
}

.solution h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  text-align: center;
  margin-bottom: 20px;
}

.solution-intro {
  text-align: center;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 56px;
  font-size: 1.05rem;
}

.app-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  width: min(100%, 1040px);
  margin: 0 auto 54px;
  max-width: 100%;
  overflow: visible;
}

.app-showcase::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 0;
  width: 72%;
  height: 72%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 168, 83, 0.14), transparent 68%);
  filter: blur(26px);
  pointer-events: none;
}

.app-showcase figure {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  min-width: 0;
  border: 1px solid rgba(212, 168, 83, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 30%, rgba(212, 168, 83, 0.18), transparent 42%),
    linear-gradient(180deg, #18171a 0%, #101012 100%);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.showcase-card {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.showcase-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.benefit-card:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   COMO FUNCIONA
   ═══════════════════════════════════════════════════════════════ */

.how-it-works {
  padding: 100px 0;
}

.how-it-works h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  text-align: center;
  margin-bottom: 56px;
}

.app-video-demo {
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #0b0b0d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.app-video-demo video {
  display: block;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: top center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 560px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent);
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.93rem;
}

/* ═══════════════════════════════════════════════════════════════
   DEPOIMENTOS
   ═══════════════════════════════════════════════════════════════ */

.testimonials {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.testimonials h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.author-detail {
  font-size: 0.8rem;
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════
   COMPARAÇÃO
   ═══════════════════════════════════════════════════════════════ */

.comparison {
  padding: 100px 0;
}

.comparison h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  text-align: center;
  margin-bottom: 48px;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.comparison-col {
  padding: 32px 28px;
  border-radius: var(--radius);
}

.comparison-old {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}

.comparison-new {
  background: var(--accent-soft);
  border: 1px solid var(--border);
}

.comparison-col h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.comparison-old h3 {
  color: var(--text-muted);
}

.comparison-new h3 {
  color: var(--accent);
}

.comparison-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-col ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.comparison-old ul li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #6b4040;
  font-size: 0.8rem;
}

.comparison-new ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   OFERTA / CTA FINAL
   ═══════════════════════════════════════════════════════════════ */

.offer {
  padding: 100px 0;
  background: var(--bg-secondary);
  text-align: center;
}

.offer h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}

.offer-desc {
  color: var(--text-secondary);
  margin-bottom: 48px;
  font-size: 1.05rem;
}

.offer-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 520px;
  margin: 0 auto;
}

.offer-price {
  margin-bottom: 32px;
}

.price-old {
  display: block;
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-current {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--accent);
}

.price-note {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.offer-includes {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-includes li {
  font-size: 0.93rem;
  color: var(--text-secondary);
  padding-left: 24px;
  position: relative;
}

.offer-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.btn-large {
  display: block;
  width: 100%;
  padding: 20px 40px;
  font-size: 1.05rem;
  text-align: center;
}

.offer-guarantee {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */

.faq {
  padding: 100px 0;
}

.faq h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--border);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal {
  margin-top: 8px;
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero {
    padding: 70px 0 34px;
  }

  .hero .container {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero h1 {
    max-width: 340px;
    margin-left: 0;
    margin-right: auto;
    font-size: 1.62rem;
  }

  .hero-sub {
    max-width: 340px;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 14px;
  }

  .hero-problem {
    max-width: 360px;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 12px;
    font-size: 1.38rem;
  }

  .hero .btn-primary {
    display: block;
    width: 100%;
    max-width: 342px;
    margin-left: 0;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }

  .hero-visual {
    width: min(100%, 460px);
    height: clamp(340px, 82vw, 430px);
    margin-top: 14px;
    margin-bottom: 54px;
  }

  .hero-phone-main {
    left: 50%;
    top: 0;
    width: min(92vw, 430px);
    transform: translateX(-50%);
  }

  .hero-phone-mockup {
    width: min(100%, 440px);
  }

  .hero-phone-shell {
    width: min(56vw, 280px);
    top: 3%;
  }

  .mock-badge {
    right: 8%;
    top: 29%;
  }

  .mock-float-left {
    left: 5%;
    top: 60%;
  }

  .mock-float-right {
    right: 1%;
    top: 53%;
  }

  .hero-phone-questions {
    display: none;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .app-showcase {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(286px, 88%);
    align-items: stretch;
    gap: 14px;
    width: 100%;
    max-width: 430px;
    padding: 0 0 10px;
    margin: 0 auto 42px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .app-showcase::-webkit-scrollbar {
    display: none;
  }

  .app-showcase::before {
    width: 95%;
    height: 58%;
    filter: blur(22px);
  }

  .showcase-card {
    aspect-ratio: 4 / 3;
    width: 100%;
    scroll-snap-align: center;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  }

  .product-video-section {
    padding: 52px 0 46px;
  }

  .app-video-demo {
    width: min(100%, 320px);
    margin: 0 auto;
  }

  .comparison-table {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .offer-box {
    padding: 36px 24px;
  }

  section {
    padding: 72px 0;
  }

  .step {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
    overflow-x: hidden;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 1.62rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-sub {
    max-width: 340px;
  }

  .hero-problem {
    max-width: 340px;
    font-size: 1.26rem;
  }

  .btn-primary {
    width: 100%;
    max-width: 342px;
    padding: 16px 20px;
    font-size: 0.95rem;
    text-align: center;
  }

  .hero-visual {
    width: 100%;
    height: 400px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 12px;
    margin-bottom: 40px;
    overflow: hidden;
  }

  .hero-phone-main {
    left: 50%;
    top: 0;
    width: min(96%, 360px);
    transform: translateX(-50%);
  }

  .hero-phone-mockup {
    width: 100%;
  }

  .hero-phone-shell {
    width: min(74vw, 286px);
    padding: 11px;
    border-radius: 38px;
  }

  .hero-phone-shell::before {
    width: 58px;
    height: 14px;
    top: 11px;
  }

  .hero-phone-screen {
    border-radius: 29px;
  }

  .mock-header {
    height: 48px;
    padding: 18px 15px 8px;
  }

  .mock-content {
    padding: 21px 16px 0;
  }

  .mock-greeting {
    margin-bottom: 16px;
  }

  .mock-greeting h3 {
    font-size: 1.24rem;
  }

  .mock-greeting p,
  .mock-card p,
  .mock-flex p {
    font-size: 0.6rem;
  }

  .mock-card {
    padding: 16px 14px;
  }

  .mock-card h4 {
    font-size: 1rem;
  }

  .mock-flex {
    margin-top: 12px;
    padding: 12px 13px;
  }

  .mock-stats {
    margin-top: 12px;
    gap: 6px;
  }

  .mock-badge {
    right: 5%;
    top: 29%;
    width: 70px;
    height: 70px;
  }

  .mock-float {
    width: 140px;
  }

  .mock-float p {
    font-size: 0.64rem;
  }

  .mock-float-left {
    left: 6%;
    top: 58%;
  }

  .mock-float-right {
    right: 3%;
    top: 51%;
  }

  .hero-phone-questions {
    display: none;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .app-showcase {
    grid-auto-columns: minmax(282px, 88%);
    max-width: 100%;
    padding-bottom: 8px;
  }

  .showcase-card {
    border-radius: 14px;
  }

  .comparison-table {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .offer-box {
    padding: 36px 24px;
  }

  section {
    padding: 72px 0;
  }
}

@media (max-width: 0px) {
  body {
    font-size: 16px;
    overflow-x: hidden;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 1.62rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-sub {
    max-width: 340px;
  }

  .btn-primary {
    width: 100%;
    max-width: 342px;
    padding: 16px 20px;
    font-size: 0.95rem;
    text-align: center;
  }

  .hero-visual {
    width: 100%;
    height: 330px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
    margin-bottom: 48px;
    overflow: visible;
  }

  .hero-phone-main {
    left: 50%;
    top: 0;
    width: min(96%, 360px);
    transform: translateX(-50%);
  }

  .hero-phone-mockup {
    width: 100%;
  }

  .hero-phone-shell {
    width: min(58vw, 230px);
    padding: 9px;
    border-radius: 32px;
  }

  .hero-phone-shell::before {
    width: 48px;
    height: 12px;
    top: 9px;
  }

  .hero-phone-screen {
    border-radius: 24px;
  }

  .mock-header {
    height: 40px;
    padding: 15px 12px 7px;
  }

  .mock-logo {
    font-size: 0.86rem;
  }

  .mock-progress {
    gap: 5px;
    font-size: 0.48rem;
  }

  .mock-progress i {
    width: 34px;
  }

  .mock-content {
    padding: 17px 13px 0;
  }

  .mock-greeting {
    margin-bottom: 12px;
  }

  .mock-greeting h3 {
    font-size: 1.05rem;
  }

  .mock-greeting p,
  .mock-card p,
  .mock-flex p {
    font-size: 0.5rem;
  }

  .mock-card {
    padding: 13px 11px;
  }

  .mock-card h4 {
    font-size: 0.84rem;
  }

  .mock-card strong,
  .mock-flex strong {
    min-height: 25px;
    margin-top: 10px;
    padding: 0 11px;
    font-size: 0.52rem;
  }

  .mock-flex {
    margin-top: 10px;
    padding: 10px 11px;
  }

  .mock-flex h4 {
    font-size: 0.78rem;
  }

  .mock-stats {
    margin-top: 10px;
    gap: 5px;
  }

  .mock-stats div {
    min-height: 43px;
    padding: 7px 3px;
  }

  .mock-stats strong {
    font-size: 0.95rem;
  }

  .mock-badge {
    right: 6%;
    top: 28%;
    width: 58px;
    height: 58px;
  }

  .mock-badge strong {
    font-size: 1.25rem;
  }

  .mock-badge span {
    width: 44px;
    font-size: 0.38rem;
  }

  .mock-float {
    width: 132px;
    padding: 10px 11px;
  }

  .mock-float p {
    font-size: 0.58rem;
  }

  .mock-float-left {
    left: 1%;
    top: 61%;
  }

  .mock-float-right {
    right: -2%;
    top: 53%;
  }

  .hero-phone-questions {
    display: none;
  }

  .step {
    flex-direction: column;
    gap: 12px;
  }
}

/* Refinamento do mockup do hero: mantem nitidez sem poluir a primeira dobra */
.hero-visual {
  width: min(100%, 760px);
  height: clamp(620px, 60vw, 760px);
  margin: 30px auto 92px;
  overflow: visible;
}

.hero-phone-mockup {
  width: min(64vw, 620px);
}

.hero-phone-shell {
  width: min(42vw, 330px);
}

.mock-content {
  padding-top: 26px;
}

.mock-float {
  width: 150px;
  padding: 12px 13px;
  opacity: 0.96;
}

.mock-float p {
  font-size: 0.66rem;
}

.mock-float-left {
  left: 3%;
  top: 63%;
}

.mock-float-right {
  right: 1%;
  top: 55%;
}

.mock-badge {
  right: 9%;
  top: 30%;
}

.hero > .container > .btn-primary {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .hero h1 {
    margin-bottom: 22px;
  }

  .hero-problem {
    margin-bottom: 18px;
  }

  .hero-sub {
    margin-bottom: 22px;
  }

  .hero-visual {
    width: min(100%, 520px);
    height: clamp(470px, 104vw, 600px);
    margin-top: 24px;
    margin-bottom: 86px;
  }

  .hero > .container > .btn-primary {
    margin-top: 12px;
  }

  .hero-phone-mockup {
    width: min(100%, 500px);
  }

  .hero-phone-shell {
    width: min(64vw, 310px);
  }

  .mock-float {
    width: 136px;
  }

  .mock-float-left {
    left: 2%;
    top: 62%;
  }

  .mock-float-right {
    right: 2%;
    top: 54%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    margin-bottom: 20px;
  }

  .hero-problem {
    margin-bottom: 16px;
  }

  .hero-sub {
    margin-bottom: 20px;
  }

  .hero-visual {
    height: 455px;
    margin-top: 22px;
    margin-bottom: 84px;
  }

  .hero > .container > .btn-primary {
    margin-top: 14px;
  }

  .hero-phone-shell {
    width: min(72vw, 286px);
    top: 2%;
  }

  .mock-content {
    padding: 19px 14px 0;
  }

  .mock-greeting h3 {
    font-size: 1.12rem;
  }

  .mock-greeting p,
  .mock-card p,
  .mock-flex p {
    font-size: 0.54rem;
  }

  .mock-card h4 {
    font-size: 0.92rem;
  }

  .mock-flex h4 {
    font-size: 0.84rem;
  }

  .mock-float {
    display: none;
  }

  .mock-badge {
    right: 4%;
    top: 27%;
    width: 62px;
    height: 62px;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    height: 560px;
    margin-top: 24px;
    margin-bottom: 42px;
    overflow: visible;
  }

  .hero-phone-mockup {
    width: 100%;
  }

  .hero-phone-shell {
    width: min(68vw, 260px);
    top: 2%;
  }

  .mock-badge {
    right: 2%;
    top: 26%;
  }

  .hero > .container > .btn-primary {
    position: relative;
    z-index: 10;
    margin-top: 0;
  }
}

.btn-primary {
  position: relative;
  isolation: isolate;
  background: linear-gradient(135deg, #f1c96b 0%, var(--accent) 46%, #b9862e 100%);
  box-shadow:
    0 0 0 1px rgba(255, 231, 166, 0.2) inset,
    0 12px 34px rgba(212, 168, 83, 0.26),
    0 0 34px rgba(212, 168, 83, 0.22);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.44) 0%, rgba(212, 168, 83, 0.16) 44%, transparent 72%);
  filter: blur(10px);
  opacity: 0.9;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffe08a 0%, var(--accent-hover) 48%, #c9943a 100%);
  box-shadow:
    0 0 0 1px rgba(255, 237, 184, 0.28) inset,
    0 16px 42px rgba(212, 168, 83, 0.34),
    0 0 46px rgba(212, 168, 83, 0.3);
}

.btn-large::before {
  inset: -12px;
  opacity: 1;
}
