:root {
  --bg: #f6f1e7;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.97);
  --text: #1f1b16;
  --text-soft: #5f5447;
  --line: rgba(31, 27, 22, 0.13);
  --gold: #c89b3c;
  --gold-strong: #a77924;
  --ink: #101827;
  --shadow: 0 20px 44px rgba(22, 18, 13, 0.12);
  --shadow-soft: 0 12px 26px rgba(22, 18, 13, 0.08);
}

* {
  box-sizing: border-box;
}

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.marketing-page {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(200, 155, 60, 0.2), transparent 34%),
    radial-gradient(circle at 92% 11%, rgba(84, 64, 44, 0.14), transparent 32%),
    linear-gradient(180deg, #fcf9f4 0%, #f4ede1 58%, #f8f4ec 100%);
  overflow-x: hidden;
}

.marketing-topbar {
  position: sticky;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
}

.marketing-topbar-inner {
  width: min(1180px, calc(100% - 20px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 768px) {
  .marketing-topbar-inner {
    justify-content: flex-start;
    gap: 8px;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .marketing-nav {
    width: 0;
    flex: 0 0 0;
  }
}

.marketing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.marketing-brand img {
  width: 124px;
  height: auto;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
}

.marketing-nav {
  position: relative;
}

.marketing-nav-links {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(320px, calc(100vw - 20px));
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  padding: 10px;
  display: grid;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.nav-open .marketing-nav-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.marketing-nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.marketing-nav-links a:hover,
.marketing-nav-links a:focus-visible {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.nav-login {
  border-color: rgba(31, 27, 22, 0.14);
}

.nav-cta {
  justify-content: center;
  color: #fff !important;
  border-color: transparent !important;
  background: linear-gradient(145deg, #d7b96d, #bd8f36);
}

.hero-landing {
  width: min(1180px, calc(100% - 20px));
  margin: 14px auto 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  min-height: 58vh;
  position: relative;
}

.hero-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(14, 10, 6, 0.74), rgba(14, 10, 6, 0.38)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
  transform: scale(1.02);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-landing-content {
  position: relative;
  z-index: 1;
  width: min(930px, calc(100% - 24px));
  margin: 0 auto;
  min-height: 58vh;
  display: grid;
  align-content: center;
  color: #fff;
  text-align: center;
  animation: riseIn 600ms ease both;
}

.hero-kicker {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 241, 216, 0.92);
}

.hero-landing h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 8vw, 5rem);
  line-height: 0.95;
}

.hero-landing p {
  margin: 14px auto 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  font-size: clamp(0.95rem, 2.8vw, 1.12rem);
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
}

.hero-microproof {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255, 241, 216, 0.96);
  font-weight: 600;
}

.btn-primary,
.btn-ghost {
  min-height: 46px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  width: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, #d7b96d, #bd8f36);
  box-shadow: 0 12px 24px rgba(189, 143, 54, 0.3);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.12);
}

.btn-ghost.dark {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-1px);
  filter: saturate(1.06);
}

.trust-strip {
  width: min(1180px, calc(100% - 20px));
  margin: 10px auto 0;
}

.trust-strip-inner {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 10px 12px;
  display: grid;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-soft);
  font-weight: 600;
}

.trust-strip-inner span::before {
  content: "• ";
  color: var(--gold-strong);
}

.marketing-main {
  width: min(1180px, calc(100% - 20px));
  margin: 16px auto 54px;
  display: grid;
  gap: 20px;
}

.section-block {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-block h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 6.4vw, 3.1rem);
  line-height: 0.96;
}

.section-block p {
  color: var(--text-soft);
  line-height: 1.7;
}

.cards-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 10px;
}

.info-card {
  border: 1px solid rgba(31, 27, 22, 0.1);
  background: var(--surface-strong);
  border-radius: 16px;
  padding: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card:hover,
.info-card:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(167, 121, 36, 0.32);
}

.info-card h3 {
  margin: 0;
  font-size: 1rem;
}

.info-card p {
  margin: 8px 0 0;
  font-size: 0.92rem;
}

.mock-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.mock-list li {
  border: 1px solid rgba(31, 27, 22, 0.1);
  border-radius: 14px;
  padding: 12px;
  background: var(--surface-strong);
}

.mock-title {
  font-weight: 700;
}

.mock-meta {
  color: var(--text-soft);
  font-size: 0.86rem;
  margin-top: 4px;
}

.faq-list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.faq-item {
  border: 1px solid rgba(31, 27, 22, 0.1);
  border-radius: 12px;
  background: var(--surface-strong);
  padding: 10px 12px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin: 8px 0 0;
}

.seo-note {
  margin-top: 16px;
  padding: 12px;
  border: 1px dashed rgba(167, 121, 36, 0.4);
  border-radius: 12px;
  background: rgba(255, 250, 239, 0.78);
}

.compare-grid {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.compare-card {
  border: 1px solid rgba(31, 27, 22, 0.12);
  border-radius: 14px;
  background: var(--surface-strong);
  padding: 12px;
}

.compare-card h3 {
  margin: 0;
}

.compare-card p {
  margin: 8px 0 0;
}

.compare-card.is-highlight {
  border-color: rgba(167, 121, 36, 0.46);
  background: linear-gradient(165deg, rgba(255, 248, 233, 0.92), rgba(255, 255, 255, 0.95));
}

.breadcrumb {
  margin: 10px 0 14px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.marketing-footer {
  width: min(1180px, calc(100% - 20px));
  margin: 0 auto 28px;
  font-size: 0.82rem;
  color: var(--text-soft);
  text-align: center;
  line-height: 1.7;
}

.marketing-footer a {
  color: inherit;
  text-decoration: none;
}

.reveal-up {
  animation: revealUp 560ms ease both;
}

.article-body {
  display: grid;
  gap: 14px;
}

.article-body h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.article-body h3 {
  margin: 0;
  font-size: 1.06rem;
}

.article-body ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.7;
}

.page-hero {
  width: min(1180px, calc(100% - 20px));
  margin: 14px auto 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(14, 10, 6, 0.72), rgba(14, 10, 6, 0.32));
}

.page-hero.photo::after,
.page-hero.work::after,
.page-hero.story::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1.02);
}

.page-hero.photo::after {
  background-image: url("https://images.unsplash.com/photo-1460978812857-470ed1c77af0?auto=format&fit=crop&w=1800&q=80");
}

.page-hero.work::after {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1800&q=80");
}

.page-hero.story::after {
  background-image: url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=1800&q=80");
}

.page-hero-body {
  position: relative;
  z-index: 1;
  min-height: 46vh;
  width: min(920px, calc(100% - 24px));
  margin: 0 auto;
  color: #fff;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 26px 0;
  text-align: center;
}

.page-hero-body h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 7vw, 4.3rem);
  line-height: 0.95;
}

.page-hero-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.93);
  line-height: 1.65;
}

.pill-row {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pill-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-split {
  display: grid;
  gap: 12px;
}

.feature-pane {
  border: 1px solid rgba(31, 27, 22, 0.1);
  border-radius: 16px;
  background: var(--surface-strong);
  padding: 14px;
}

.feature-pane h3 {
  margin: 0;
  font-size: 1.02rem;
}

.feature-pane p {
  margin: 8px 0 0;
}

.stats-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  border-radius: 14px;
  border: 1px solid rgba(31, 27, 22, 0.12);
  background: var(--surface-strong);
  padding: 12px;
}

.stat-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  line-height: 0.9;
}

.stat-card span {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.timeline {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.timeline li {
  border-left: 2px solid rgba(167, 121, 36, 0.4);
  padding: 8px 0 8px 10px;
}

.timeline strong {
  display: block;
}

.timeline span {
  color: var(--text-soft);
  font-size: 0.88rem;
}

@keyframes heroZoom {
  from { transform: scale(1.01); }
  to { transform: scale(1.08); }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 481px) {
  .hero-actions {
    flex-direction: row;
  }

  .btn-primary,
  .btn-ghost {
    width: auto;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  .marketing-nav-links {
    position: static;
    width: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
  }

  .marketing-nav-links a {
    border-radius: 999px;
    min-height: 40px;
    font-size: 0.86rem;
  }

  .marketing-brand img {
    width: 132px;
  }

  .hero-landing,
  .hero-landing-content {
    min-height: 62vh;
  }

  .marketing-main {
    gap: 24px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .three-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .compare-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-split {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-hero-body {
    min-height: 50vh;
  }
}

@media (min-width: 1025px) {
  .hero-landing,
  .hero-landing-content {
    min-height: 70vh;
  }

  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .marketing-main {
    gap: 34px;
  }
}

/* Landing v2 (somente index) */
.landing-v2 {
  background:
    radial-gradient(circle at 0% 0%, rgba(230, 188, 103, 0.3), transparent 40%),
    radial-gradient(circle at 100% 10%, rgba(24, 37, 62, 0.18), transparent 38%),
    linear-gradient(175deg, #fffdf8 0%, #f6efe2 52%, #f9f5ec 100%);
}

.landing-v2 .lp-v2-main {
  width: min(1220px, calc(100% - 20px));
  margin: 18px auto 56px;
  display: grid;
  gap: 20px;
}

.landing-v2 .lp-v2-hero {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(27, 21, 14, 0.1);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(250, 246, 238, 0.8));
  box-shadow: 0 26px 56px rgba(20, 17, 12, 0.12);
  padding: 18px;
}

.landing-v2 .lp-v2-hero-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 8vw, 4.4rem);
  line-height: 0.92;
}

.landing-v2 .lp-v2-hero-copy p {
  color: #564b3f;
  line-height: 1.7;
  margin: 14px 0 0;
}

.landing-v2 .lp-v2-hero-actions {
  justify-content: flex-start;
}

.landing-v2 .lp-v2-proof {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.landing-v2 .lp-v2-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(167, 121, 36, 0.22);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
  font-weight: 700;
  color: #725828;
}

.landing-v2 .lp-v2-system-shot {
  border-radius: 18px;
  border: 1px solid rgba(31, 27, 22, 0.14);
  overflow: hidden;
  background: #fcfaf6;
  box-shadow: 0 18px 34px rgba(15, 13, 10, 0.15);
}

.landing-v2 .shot-topbar {
  background: #1e1b18;
  color: rgba(255, 255, 255, 0.86);
  min-height: 40px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.landing-v2 .shot-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.landing-v2 .shot-topbar p {
  margin: 0 0 0 4px;
  font-size: 0.72rem;
}

.landing-v2 .shot-body {
  display: grid;
  grid-template-columns: 1fr;
}

.landing-v2 .shot-sidebar {
  background: rgba(31, 27, 22, 0.95);
  color: rgba(255, 255, 255, 0.9);
  padding: 14px;
  display: grid;
  gap: 6px;
}

.landing-v2 .shot-sidebar strong {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4d287;
}

.landing-v2 .shot-sidebar p {
  margin: 0;
  font-size: 0.82rem;
}

.landing-v2 .shot-content {
  padding: 14px;
  background: linear-gradient(155deg, #fffdf8, #f6efe2);
}

.landing-v2 .shot-public-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.landing-v2 .shot-public-grid img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(31, 27, 22, 0.14);
  transform: translateY(0);
  transition: transform 420ms ease, filter 320ms ease;
  will-change: transform;
}

.landing-v2 .shot-public-grid img:hover {
  filter: saturate(1.05) contrast(1.02);
}

.landing-v2 .hero-mobile-mock {
  width: 168px;
  margin: 10px 0 14px auto;
  border: 1px solid rgba(31, 27, 22, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 30px rgba(20, 16, 11, 0.16);
  padding: 8px;
}

.landing-v2 .mobile-mock-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 2px 2px 6px;
}

.landing-v2 .mobile-mock-head strong {
  font-size: 0.72rem;
}

.landing-v2 .mobile-mock-head span {
  font-size: 0.65rem;
  color: #7e6d58;
  font-weight: 700;
}

.landing-v2 .hero-mobile-mock img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  border-radius: 12px;
}

.landing-v2 .mobile-mock-meta {
  margin-top: 6px;
  display: grid;
  gap: 2px;
}

.landing-v2 .mobile-mock-meta p {
  margin: 0;
  font-size: 0.68rem;
  color: #6b5e4f;
}

.landing-v2 .shot-stats {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}

.landing-v2 .shot-stats article {
  border: 1px solid rgba(31, 27, 22, 0.12);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
}

.landing-v2 .shot-stats small {
  display: block;
  color: #746557;
  font-size: 0.73rem;
}

.landing-v2 .shot-stats strong {
  display: block;
  margin-top: 4px;
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.9;
}

.landing-v2 .shot-queue {
  margin-top: 10px;
  border: 1px dashed rgba(167, 121, 36, 0.4);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 251, 241, 0.84);
}

.landing-v2 .shot-queue h3 {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.landing-v2 .shot-queue ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.landing-v2 .shot-queue li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #4a4037;
}

.landing-v2 .shot-queue em {
  font-style: normal;
  color: #a77924;
  font-weight: 700;
}

.landing-v2 .lp-v2-band {
  border-top: 1px solid rgba(31, 27, 22, 0.18);
  border-bottom: 1px solid rgba(31, 27, 22, 0.18);
  padding: 12px;
  display: grid;
  gap: 8px;
}

.landing-v2 .lp-v2-band p {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  color: #625647;
}

.landing-v2 .lp-v2-flow,
.landing-v2 .lp-v2-demo,
.landing-v2 .lp-v2-scenarios,
.landing-v2 .lp-v2-pricing,
.landing-v2 .lp-v2-final-cta {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 14px 2px;
}

.landing-v2 .lp-v2-flow h2,
.landing-v2 .lp-v2-demo h2,
.landing-v2 .lp-v2-scenarios h2,
.landing-v2 .lp-v2-pricing h2,
.landing-v2 .lp-v2-final-cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 5vw, 3.2rem);
  line-height: 0.95;
}

.landing-v2 .lp-v2-pricing-head p {
  color: #625649;
  max-width: 760px;
}

.landing-v2 .lp-v2-demo-grid {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.landing-v2 .demo-showcase-switch {
  margin-top: 12px;
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(31, 27, 22, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.landing-v2 .demo-showcase-switch button {
  border: 0;
  border-radius: 999px;
  min-height: 34px;
  padding: 6px 14px;
  background: transparent;
  color: #6a5b4b;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.landing-v2 .demo-showcase-switch button.is-active {
  background: linear-gradient(145deg, #d7b96d, #bd8f36);
  color: #fff;
}

.landing-v2 .demo-panel {
  border: 1px solid rgba(31, 27, 22, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  padding: 14px;
  transition: transform 260ms ease, box-shadow 260ms ease, opacity 220ms ease;
}

.landing-v2 .demo-panel.is-active {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(20, 16, 11, 0.12);
}

.landing-v2 .demo-panel-dark {
  background: linear-gradient(145deg, #1f1b16, #30271d);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.16);
}

.landing-v2 .demo-kicker {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #8b651f;
}

.landing-v2 .demo-panel-dark .demo-kicker {
  color: #f1cb7c;
}

.landing-v2 .demo-panel h3 {
  margin: 8px 0 0;
  font-size: 1.08rem;
}

.landing-v2 .demo-panel ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.landing-v2 .demo-panel li {
  font-size: 0.86rem;
  color: #5f5447;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed rgba(31, 27, 22, 0.14);
  padding-bottom: 6px;
}

.landing-v2 .demo-panel-dark li {
  color: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.landing-v2 .demo-panel li span {
  font-weight: 700;
}

.landing-v2 .lp-v2-pricing-grid {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.landing-v2 .pricing-card {
  border: 1px solid rgba(31, 27, 22, 0.1);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  gap: 10px;
}

.landing-v2 .pricing-tag {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b651f;
  font-weight: 700;
}

.landing-v2 .pricing-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.landing-v2 .pricing-value {
  margin: 0;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.9;
}

.landing-v2 .pricing-value span {
  font-size: 0.86rem;
  color: #6f6252;
  margin-left: 3px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.landing-v2 .pricing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.landing-v2 .pricing-card li {
  font-size: 0.85rem;
  color: #6f6252;
}

.landing-v2 .pricing-card li::before {
  content: "✓ ";
  color: #a77924;
  font-weight: 700;
}

.landing-v2 .pricing-card--featured {
  border-color: rgba(167, 121, 36, 0.4);
  background: linear-gradient(150deg, rgba(255, 248, 232, 0.95), rgba(255, 255, 255, 0.92));
  box-shadow: 0 14px 28px rgba(167, 121, 36, 0.14);
}

/* Micro-animacoes nos blocos principais */
body.js-anim .landing-v2 .reveal-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
}

body.js-anim .landing-v2 .reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-v2 .lp-v2-steps {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.landing-v2 .lp-v2-steps article {
  border-left: 3px solid rgba(167, 121, 36, 0.45);
  padding: 8px 0 8px 12px;
}

.landing-v2 .lp-v2-steps span {
  display: inline-flex;
  min-width: 34px;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  background: rgba(167, 121, 36, 0.14);
  color: #8b651f;
  font-size: 0.74rem;
  font-weight: 700;
}

.landing-v2 .lp-v2-steps h3 {
  margin: 8px 0 0;
  font-size: 1.05rem;
}

.landing-v2 .lp-v2-steps p {
  margin: 6px 0 0;
  color: #615649;
}

.landing-v2 .scenario-row {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.landing-v2 .scenario-card {
  border: 1px solid rgba(31, 27, 22, 0.1);
  border-radius: 15px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.landing-v2 .scenario-card h3 {
  margin: 0;
  font-size: 1rem;
}

.landing-v2 .scenario-card p {
  margin: 8px 0 0;
  color: #63584c;
}

.landing-v2 .scenario-meta {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.landing-v2 .scenario-meta span {
  font-size: 0.82rem;
  color: #7b6d5d;
}

.landing-v2 .scenario-card--highlight {
  background: linear-gradient(145deg, rgba(255, 247, 228, 0.94), rgba(255, 255, 255, 0.9));
  border-color: rgba(167, 121, 36, 0.36);
}

.landing-v2 .lp-v2-final-cta {
  text-align: center;
  border-top: 1px solid rgba(31, 27, 22, 0.18);
  margin-top: 8px;
  padding-top: 20px;
}

.landing-v2 .lp-v2-final-cta p {
  margin: 10px auto 0;
  max-width: 760px;
  color: #625649;
}

.landing-v2 .lp-v2-final-cta .lp-v2-hero-actions {
  justify-content: center;
}

@media (min-width: 760px) {
  .landing-v2 .lp-v2-hero {
    grid-template-columns: 1fr 1fr;
    padding: 24px;
    align-items: center;
  }

  .landing-v2 .lp-v2-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-v2 .shot-body {
    grid-template-columns: 220px 1fr;
  }

  .landing-v2 .hero-mobile-mock {
    position: absolute;
    right: 12px;
    bottom: 12px;
    margin: 0;
  }

  .landing-v2 .lp-v2-system-shot {
    position: relative;
    padding-bottom: 6px;
  }

  .landing-v2 .shot-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-v2 .lp-v2-demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-v2 .scenario-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-v2 .lp-v2-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .landing-v2 .lp-v2-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .landing-v2 .lp-v2-main {
    margin-top: 12px;
    gap: 14px;
  }

  .landing-v2 .lp-v2-hero {
    padding: 14px;
    border-radius: 18px;
  }

  .landing-v2 .lp-v2-hero-copy p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .landing-v2 .lp-v2-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .landing-v2 .lp-v2-hero-actions .btn-primary,
  .landing-v2 .lp-v2-hero-actions .btn-ghost {
    width: 100%;
  }

  .landing-v2 .lp-v2-proof span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .landing-v2 .shot-sidebar {
    gap: 4px;
    padding: 12px;
  }

  .landing-v2 .shot-public-grid img {
    height: 78px;
  }

  .landing-v2 .hero-mobile-mock {
    width: min(190px, 62%);
    margin: 12px auto 8px;
  }

  .landing-v2 .demo-showcase-switch {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 14px;
  }

  .landing-v2 .demo-showcase-switch button {
    min-height: 36px;
    padding: 6px 8px;
    font-size: 0.76rem;
  }

  .landing-v2 .demo-panel {
    padding: 12px;
  }

  .landing-v2 .demo-panel li {
    display: grid;
    gap: 2px;
    justify-content: flex-start;
    font-size: 0.82rem;
  }

  .landing-v2 .pricing-card {
    padding: 12px;
  }

  .landing-v2 .pricing-value {
    font-size: 1.7rem;
  }

  .landing-v2 .scenario-card {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .landing-v2 .lp-v2-hero-copy h1 {
    font-size: clamp(1.8rem, 10.5vw, 2.45rem);
    line-height: 0.95;
  }

  .landing-v2 .hero-mobile-mock {
    width: min(170px, 70%);
  }

  .landing-v2 .hero-mobile-mock img {
    height: 170px;
  }

  .landing-v2 .shot-public-grid {
    gap: 5px;
  }

  .landing-v2 .shot-public-grid img {
    height: 70px;
  }

  .landing-v2 .lp-v2-flow,
  .landing-v2 .lp-v2-demo,
  .landing-v2 .lp-v2-scenarios,
  .landing-v2 .lp-v2-pricing,
  .landing-v2 .lp-v2-final-cta {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
