:root {
  --wine-950: #2b0f16;
  --wine-900: #3b151f;
  --wine-800: #4b1b28;
  --wine-700: #652637;
  --rose-500: #9e535f;
  --rose-400: #b56e75;
  --rose-200: #ead0cc;
  --cream-100: #fff8ef;
  --cream-150: #fff3e7;
  --cream-200: #f8ebdc;
  --beige-300: #e7d1ba;
  --beige-500: #c9a986;
  --brown-700: #5e4537;
  --brown-900: #2b211c;
  --gold-300: #d7b76d;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(43, 15, 22, 0.16);
  --shadow-strong: 0 28px 90px rgba(43, 15, 22, 0.24);
  --shadow-soft: 0 12px 34px rgba(43, 15, 22, 0.10);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1120px;
  --font-title: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--brown-900);
  background: var(--cream-100);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

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

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

p {
  margin-bottom: 1rem;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 72px 0;
}

.section-soft {
  background:
    radial-gradient(circle at top left, rgba(181, 110, 117, 0.12), transparent 38%),
    linear-gradient(180deg, #fff8ef 0%, #f8ebdc 100%);
}

.narrow {
  max-width: 780px;
}

.center {
  text-align: center;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 248, 239, 0.90);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(101, 38, 55, 0.10);
}

.topbar-inner {
  position: relative;
  width: min(100% - 24px, var(--container));
  min-height: 66px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  gap: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  font-weight: 900;
  color: var(--wine-900);
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--wine-900);
  color: var(--cream-100);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-spacer {
  width: 46px;
  height: 1px;
}

.menu-dropdown {
  position: relative;
  z-index: 50;
}

.menu-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(101, 38, 55, 0.14);
  box-shadow: 0 8px 22px rgba(43, 15, 22, 0.07);
  cursor: pointer;
  list-style: none;
}

.menu-trigger::-webkit-details-marker {
  display: none;
}

.menu-icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.menu-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--wine-900);
}

.menu-label {
  display: none;
  color: var(--wine-900);
  font-size: 0.9rem;
  font-weight: 900;
}

.menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(82vw, 300px);
  padding: 10px;
  border: 1px solid rgba(101, 38, 55, 0.14);
  border-radius: 22px;
  background: rgba(255, 248, 239, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-dropdown[open] .menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-panel a {
  display: block;
  padding: 13px 14px;
  border-radius: 14px;
  color: rgba(43, 33, 28, 0.80);
  font-weight: 800;
}

.menu-panel a:hover {
  background: rgba(101, 38, 55, 0.08);
  color: var(--wine-900);
}

.menu-panel .menu-checkout {
  margin-top: 8px;
  text-align: center;
  color: var(--cream-100);
  background: linear-gradient(135deg, var(--wine-900), var(--wine-700));
}

.topbar-cta {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--wine-900), var(--wine-700));
  color: var(--cream-100);
  box-shadow: 0 14px 34px rgba(75, 27, 40, 0.24);
}

.button-secondary {
  color: var(--wine-900);
  border-color: rgba(101, 38, 55, 0.22);
  background: rgba(255, 248, 239, 0.82);
  box-shadow: var(--shadow-soft);
}

.button-light {
  color: var(--wine-900);
  background: var(--cream-100);
  border-color: rgba(255, 248, 239, 0.24);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.button-small {
  min-height: 42px;
  padding: 12px 16px;
  font-size: 0.9rem;
}

.full {
  width: 100%;
}

h1,
h2,
h3 {
  color: var(--wine-950);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1,
h2 {
  font-family: var(--font-title);
  font-weight: 700;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.05rem, 14vw, 4.55rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.28rem, 11vw, 3.45rem);
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--wine-700);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold-300);
}

.hero {
  overflow: hidden;
  padding: 54px 0 72px;
  background:
    radial-gradient(circle at 82% 14%, rgba(215, 183, 109, 0.22), transparent 30%),
    radial-gradient(circle at 8% 6%, rgba(181, 110, 117, 0.16), transparent 30%),
    linear-gradient(135deg, var(--cream-100) 0%, #f6e7d7 56%, #f1dbd7 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -45% -24% auto;
  width: 88vw;
  height: 88vw;
  max-width: 900px;
  max-height: 900px;
  background: rgba(75, 27, 40, 0.08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
  align-items: center;
}

.hero-copy {
  text-align: center;
}

.hero-subtitle {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(43, 33, 28, 0.76);
  font-size: 1.06rem;
}

.hero-bullets {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.hero-bullets li {
  position: relative;
  padding: 13px 14px 13px 42px;
  border: 1px solid rgba(101, 38, 55, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  color: rgba(43, 33, 28, 0.78);
  font-weight: 700;
  font-size: 0.94rem;
  text-align: left;
}

.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 13px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--wine-700);
  color: var(--cream-100);
  font-size: 0.72rem;
}

.hero-visual {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.hero-image {
  width: min(100%, 620px);
}

.image-card,
.visual-frame,
.showcase,
.scripts-visual,
.demo-card,
.offer-visual {
  overflow: hidden;
  border: 1px solid rgba(101, 38, 55, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow);
}

.image-card {
  display: block;
}

.hero-actions {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.microcopy {
  margin: 0;
  color: rgba(43, 33, 28, 0.64);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.section-heading p,
.copy-text p,
.narrow > p,
.solution-copy p,
.how-content > p,
.demo-section .section-heading p {
  color: rgba(43, 33, 28, 0.74);
  font-size: 1.02rem;
}

.copy-text {
  margin-top: 18px;
}

.routine-grid,
.solution-grid,
.how-grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

.routine-section .section-heading,
.solution-copy,
.how-content {
  text-align: center;
}

.visual-frame img,
.scripts-visual img,
.bonus-card img,
.demo-card img,
.offer-visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.visual-frame img {
  object-fit: cover;
}

.routine-section .visual-frame {
  max-height: 680px;
}

.solution-section .visual-frame,
.how-visual {
  max-width: 640px;
  margin: 0 auto;
}

.how-visual {
  max-height: 680px;
}

.steps-grid,
.bonus-grid,
.included-grid,
.demo-cards,
.two-cards {
  display: grid;
  gap: 18px;
}

.steps-grid {
  margin-top: 28px;
}

.step-card,
.included-card,
.audience-card,
.faq-list details {
  border: 1px solid rgba(101, 38, 55, 0.11);
  box-shadow: var(--shadow-soft);
}

.step-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
}

.step-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--rose-400);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.step-card p,
.included-card p,
.audience-card li,
.audience-card p,
.offer-card p,
.faq-list p,
.footer p,
.bonus-card p,
.demo-card p,
.script-card p {
  color: rgba(43, 33, 28, 0.70);
}

.cta-gap {
  margin-top: 30px;
}

.showcase {
  max-width: 940px;
  margin: 34px auto 0;
  background: rgba(255, 255, 255, 0.62);
}

.showcase img {
  display: block;
  width: 100%;
}

.included-grid {
  margin-top: 28px;
}

.included-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--wine-900);
  color: var(--cream-100);
  font-weight: 900;
}

.scripts-section {
  color: var(--cream-100);
  background:
    radial-gradient(circle at 0% 10%, rgba(215, 183, 109, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(43, 15, 22, 0.98), rgba(75, 27, 40, 0.94)),
    var(--wine-950);
  overflow: hidden;
}

.scripts-section .eyebrow,
.scripts-section h2,
.scripts-section p {
  color: var(--cream-100);
}

.scripts-section .section-heading p {
  color: rgba(255, 248, 239, 0.76);
}

.scripts-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.scripts-visual {
  background: rgba(255, 248, 239, 0.08);
  border-color: rgba(255, 248, 239, 0.14);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
}

.script-cards {
  display: grid;
  gap: 14px;
}

.script-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 239, 0.09);
  border: 1px solid rgba(255, 248, 239, 0.14);
}

.script-card.featured {
  background: rgba(255, 248, 239, 0.16);
}

.script-card span,
.bonus-copy span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-300);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.script-card h3,
.script-card p,
.script-card small {
  color: var(--cream-100);
}

.script-card small {
  font-weight: 900;
  opacity: 0.78;
}

.bonus-section {
  background: #fff8ef;
}

.bonus-grid {
  margin-top: 34px;
}

.bonus-card {
  overflow: hidden;
  border: 1px solid rgba(101, 38, 55, 0.11);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(248, 235, 220, 0.66));
  box-shadow: var(--shadow-soft);
}

.bonus-card img {
  aspect-ratio: 4 / 3.15;
  object-fit: cover;
}

.bonus-copy {
  padding: 24px;
}

.audience-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
}

.audience-card.no {
  background: #fbf1e9;
}

.check-list,
.x-list,
.offer-list {
  display: grid;
  gap: 12px;
}

.check-list li,
.x-list li,
.offer-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before,
.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--wine-800);
  font-weight: 900;
}

.x-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--rose-400);
  font-weight: 900;
}

.note {
  margin-top: 20px;
  padding: 16px;
  border-left: 3px solid var(--gold-300);
  background: rgba(255, 255, 255, 0.56);
  border-radius: 12px;
}

.demo-cards {
  margin-top: 34px;
}

.demo-card {
  background: rgba(255, 255, 255, 0.78);
}

.demo-card img {
  aspect-ratio: 4 / 3.25;
  object-fit: cover;
}

.demo-card div {
  padding: 24px;
}

.checkout-section {
  padding-top: 82px;
}

.offer-card {
  display: grid;
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(101, 38, 55, 0.11);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(215, 183, 109, 0.18), transparent 40%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.offer-visual {
  border-radius: 24px;
  box-shadow: none;
}

.offer-content {
  padding: 12px 10px 4px;
}

.offer-list {
  margin-top: 22px;
}

.price-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 22px;
  border-radius: 26px;
  background: linear-gradient(145deg, var(--wine-950), var(--wine-700));
  color: var(--cream-100);
  box-shadow: 0 22px 50px rgba(75, 27, 40, 0.26);
}

.price-box p,
.price-box .microcopy {
  color: rgba(255, 248, 239, 0.76);
}

.price-label {
  color: var(--gold-300);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.price {
  margin: 8px 0 12px;
  font-size: clamp(4rem, 18vw, 5.8rem);
  line-height: 1;
  font-family: var(--font-title);
  font-weight: 700;
}

.guarantee-section {
  background: #fff8ef;
}

.guarantee-seal {
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--wine-900);
  color: var(--cream-100);
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq-list details {
  padding: 0 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.faq-list summary {
  padding: 20px 0;
  color: var(--wine-950);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0 0 20px;
}

.final-cta-section {
  color: var(--cream-100);
  background:
    radial-gradient(circle at 50% -20%, rgba(215, 183, 109, 0.18), transparent 34%),
    linear-gradient(145deg, var(--wine-950), var(--wine-800));
}

.final-cta-section h2,
.final-cta-section p,
.final-cta-section .eyebrow {
  color: var(--cream-100);
}

.final-cta-section .microcopy {
  color: rgba(255, 248, 239, 0.74);
}

.footer {
  padding: 40px 0;
  background: var(--wine-950);
  color: var(--cream-100);
  border-top: 1px solid rgba(255, 248, 239, 0.10);
}

.footer-grid {
  display: grid;
  gap: 20px;
}

.footer p {
  margin: 8px 0 0;
  color: rgba(255, 248, 239, 0.68);
  font-size: 0.92rem;
}

.reveal {
  animation: reveal 700ms ease both;
}

.desktop-only {
  display: none;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 560px) {
  .hero-bullets,
  .included-grid,
  .steps-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .button:not(.button-small) {
    width: auto;
  }
}

@media (min-width: 760px) {
  .section {
    padding: 88px 0;
  }

  .topbar-inner {
    grid-template-columns: auto auto 1fr auto;
    min-height: 72px;
    gap: 18px;
  }

  .brand {
    justify-content: flex-start;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.78rem;
  }

  .mobile-spacer {
    display: none;
  }

  .menu-trigger {
    width: auto;
    padding: 0 15px;
  }

  .menu-label,
  .topbar-cta {
    display: inline-flex;
  }

  .topbar-cta {
    color: var(--wine-900);
    background: var(--white);
    border-color: rgba(101, 38, 55, 0.12);
    box-shadow: 0 8px 22px rgba(43, 15, 22, 0.07);
  }

  h1 {
    font-size: clamp(4.2rem, 7.4vw, 6.5rem);
  }

  h2 {
    font-size: clamp(3rem, 5vw, 4.65rem);
  }

  .hero {
    padding: 76px 0 92px;
  }

  .hero-grid,
  .routine-grid,
  .solution-grid,
  .how-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 54px;
  }

  .hero-copy,
  .routine-section .section-heading,
  .solution-copy,
  .how-content {
    text-align: left;
  }

  .hero-subtitle {
    margin-left: 0;
  }

  .hero-bullets {
    max-width: 650px;
  }

  .hero-image {
    width: min(100%, 650px);
  }

  .hero-actions {
    justify-items: flex-start;
  }

  .eyebrow {
    justify-content: flex-start;
  }

  .center .eyebrow,
  .final-cta-section .eyebrow,
  .guarantee-section .eyebrow {
    justify-content: center;
  }

  .routine-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .solution-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .how-grid {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .how-grid .how-visual {
    order: 0;
  }

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

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

  .bonus-grid,
  .demo-cards,
  .two-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .scripts-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
  }

  .scripts-layout .script-cards {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .scripts-section .button-light {
    margin-top: 12px;
  }

  .offer-card {
    grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr) minmax(290px, 0.72fr);
    align-items: center;
    padding: 20px;
    gap: 24px;
  }

  .offer-content {
    padding: 18px 4px;
  }

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

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

  .desktop-only {
    display: inline-flex;
    margin-top: 14px;
  }
}

@media (min-width: 1080px) {
  .section {
    padding: 102px 0;
  }

  .hero {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
    gap: 64px;
  }

  .hero-image {
    width: min(100%, 720px);
  }

  .showcase {
    margin-top: 44px;
  }

  .included-grid {
    margin-top: 34px;
  }

  .bonus-grid,
  .demo-cards {
    margin-top: 42px;
  }
}

@media (max-width: 559px) {
  .button:not(.button-small) {
    width: 100%;
  }

  .menu-panel {
    left: -2px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero-bullets {
    margin-top: 22px;
  }

  .hero-image {
    border-radius: 24px;
  }

  .routine-section .visual-frame,
  .solution-section .visual-frame,
  .how-visual {
    border-radius: 24px;
  }

  .bonus-card img,
  .demo-card img {
    aspect-ratio: 4 / 3.6;
  }

  .price-box {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button,
  .menu-panel {
    animation: none;
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}

/* ==============================
   V5 — ajuste responsivo mobile-first
   Foco: menos altura no celular, mais ritmo, CTAs mais acessíveis
   ============================== */

:root {
  --mobile-safe-bottom: 86px;
}

body {
  padding-bottom: var(--mobile-safe-bottom);
}

.container {
  width: min(100% - 28px, var(--container));
}

.section {
  padding: 54px 0;
}

h1 {
  font-size: clamp(2.55rem, 11.5vw, 3.65rem);
  line-height: 0.94;
  margin-bottom: 16px;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.05rem, 8.6vw, 2.95rem);
  line-height: 0.98;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.03rem;
}

p {
  line-height: 1.56;
}

.eyebrow {
  margin-bottom: 10px;
  font-size: 0.69rem;
  letter-spacing: 0.13em;
}

.topbar-inner {
  min-height: 58px;
}

.hero {
  padding: 34px 0 48px;
}

.hero-grid {
  gap: 22px;
}

.hero-copy {
  display: grid;
  justify-items: center;
}

.hero-subtitle {
  max-width: 31rem;
  margin-bottom: 0;
  font-size: 0.98rem;
}

.hero-actions-top {
  margin-top: 20px;
}

.hero-actions-bottom {
  display: none;
}

.hero-bullets {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.hero-bullets li {
  min-height: 48px;
  padding: 11px 10px 11px 32px;
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.22;
}

.hero-bullets li::before {
  left: 10px;
  top: 11px;
  width: 17px;
  height: 17px;
  font-size: 0.63rem;
}

.hero-image {
  width: min(100%, 430px);
  border-radius: 24px;
  box-shadow: 0 18px 54px rgba(43, 15, 22, 0.18);
}

.button:not(.button-small) {
  min-height: 52px;
  padding: 15px 18px;
  font-size: 0.94rem;
}

.microcopy {
  font-size: 0.8rem;
}

.quick-offer {
  padding: 18px 0;
  background: var(--wine-950);
  color: var(--cream-100);
}

.quick-offer-inner {
  display: grid;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.quick-offer strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--cream-100);
}

.quick-offer span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 248, 239, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
}

.quick-offer .button {
  width: 100%;
  background: var(--cream-100);
  color: var(--wine-900);
  box-shadow: none;
}

.routine-grid,
.solution-grid,
.how-grid,
.scripts-layout {
  gap: 24px;
}

.section-heading p,
.copy-text p,
.narrow > p,
.solution-copy p,
.how-content > p,
.demo-section .section-heading p {
  font-size: 0.97rem;
}

.copy-text p:last-child,
.solution-copy p:last-child,
.how-content > p:last-of-type {
  margin-bottom: 0;
}

.visual-frame,
.showcase,
.scripts-visual,
.demo-card,
.offer-visual,
.image-card {
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(43, 15, 22, 0.13);
}

.routine-section .visual-frame img,
.solution-section .visual-frame img,
.how-visual img,
.scripts-visual img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.showcase img,
.offer-visual img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.visual-frame,
.scripts-visual,
.showcase,
.offer-visual {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.steps-grid {
  margin-top: 22px;
}

.step-card,
.included-card,
.audience-card {
  padding: 20px;
  border-radius: 20px;
}

.step-number {
  margin-bottom: 10px;
  font-size: 0.78rem;
}

.step-card p,
.included-card p,
.bonus-card p,
.demo-card p,
.script-card p,
.audience-card li,
.offer-list li,
.faq-list p {
  font-size: 0.93rem;
}

.showcase {
  margin-top: 24px;
}

.included-grid {
  gap: 12px;
  margin-top: 20px;
}

.included-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: start;
}

.included-card h3,
.included-card p {
  grid-column: 2;
}

.included-card h3 {
  margin-bottom: 5px;
}

.icon {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  margin: 0;
  font-size: 0.82rem;
}

.cta-gap {
  margin-top: 24px;
}

.scripts-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

.scripts-visual img {
  object-position: center;
}

.script-cards {
  gap: 10px;
}

.script-card {
  padding: 18px;
  border-radius: 18px;
}

.script-card span,
.bonus-copy span {
  margin-bottom: 7px;
  font-size: 0.67rem;
}

.bonus-grid,
.demo-cards {
  margin-top: 24px;
  gap: 16px;
}

.bonus-card {
  border-radius: 22px;
}

.bonus-card img,
.demo-card img {
  aspect-ratio: 4 / 3.25;
  object-fit: cover;
}

.bonus-copy,
.demo-card div {
  padding: 18px;
}

.demo-card h3,
.bonus-card h3 {
  margin-bottom: 6px;
}

.offer-card {
  gap: 14px;
  padding: 12px;
  border-radius: 24px;
}

.offer-content {
  padding: 8px 8px 0;
}

.offer-list {
  gap: 9px;
  margin-top: 16px;
}

.price-box {
  padding: 24px 18px;
  border-radius: 22px;
}

.price {
  font-size: clamp(3.8rem, 18vw, 5.2rem);
}

.guarantee-seal {
  width: 88px;
  height: 88px;
  font-size: 1.55rem;
}

.faq-list {
  gap: 9px;
  margin-top: 24px;
}

.faq-list details {
  padding: 0 16px;
  border-radius: 15px;
}

.faq-list summary {
  padding: 16px 0;
  font-size: 0.94rem;
}

.final-cta-section {
  padding-bottom: 68px;
}

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wine-900), var(--wine-700));
  color: var(--cream-100);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 16px 44px rgba(43, 15, 22, 0.32);
  border: 1px solid rgba(255, 248, 239, 0.18);
}

@media (min-width: 560px) {
  .quick-offer-inner {
    grid-template-columns: 1fr auto;
    text-align: left;
  }

  .quick-offer .button {
    width: auto;
  }

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

  .included-card {
    display: block;
  }

  .included-card h3,
  .included-card p {
    grid-column: auto;
  }

  .icon {
    margin-bottom: 16px;
  }
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .mobile-sticky-cta {
    display: none;
  }

  .container {
    width: min(100% - 40px, var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    padding: 74px 0 86px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    gap: 54px;
  }

  .hero-copy {
    justify-items: flex-start;
    text-align: left;
  }

  .hero-actions-bottom {
    display: none;
  }

  .hero-bullets {
    max-width: 620px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-bullets li {
    min-height: 54px;
    font-size: 0.9rem;
  }

  .hero-image {
    width: min(100%, 620px);
    border-radius: 28px;
  }

  h1 {
    font-size: clamp(4rem, 7vw, 6.25rem);
  }

  h2 {
    font-size: clamp(2.9rem, 4.8vw, 4.45rem);
  }

  .quick-offer {
    padding: 22px 0;
  }

  .quick-offer strong {
    font-size: 2.1rem;
  }

  .routine-grid,
  .solution-grid,
  .how-grid {
    gap: 46px;
  }

  .visual-frame,
  .scripts-visual,
  .showcase,
  .offer-visual {
    max-width: none;
  }

  .routine-section .visual-frame img,
  .solution-section .visual-frame img,
  .how-visual img,
  .scripts-visual img {
    aspect-ratio: auto;
  }

  .routine-section .visual-frame img {
    aspect-ratio: 4 / 5;
  }

  .solution-section .visual-frame img,
  .scripts-visual img {
    aspect-ratio: 4 / 5;
  }

  .how-visual img {
    aspect-ratio: 4 / 5;
  }

  .showcase img,
  .offer-visual img {
    aspect-ratio: 1 / 1;
  }

  .included-card {
    min-height: 184px;
    padding: 24px;
  }

  .scripts-layout {
    gap: 42px;
  }

  .script-card {
    padding: 22px;
  }

  .bonus-card img,
  .demo-card img {
    aspect-ratio: 4 / 3.2;
  }

  .bonus-copy,
  .demo-card div {
    padding: 22px;
  }

  .offer-card {
    padding: 18px;
    gap: 22px;
  }

  .price-box {
    padding: 30px 24px;
  }
}

@media (min-width: 1080px) {
  .section {
    padding: 96px 0;
  }

  .hero {
    min-height: calc(100vh - 72px);
    padding: 74px 0 96px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
    gap: 70px;
  }

  .hero-image {
    width: min(100%, 700px);
  }

  .quick-offer-inner {
    max-width: 960px;
  }

  .bonus-card img,
  .demo-card img {
    aspect-ratio: 4 / 3.1;
  }
}

/* =========================================================
   AJUSTE V6 — HERO DESKTOP CENTRALIZADO
   Mantém o comportamento mobile atual e corrige apenas a
   primeira dobra em tablets/desktops.
   ========================================================= */
@media (min-width: 760px) {
  .hero {
    min-height: auto;
    padding: 76px 0 94px;
  }

  .hero-grid {
    max-width: 980px;
    grid-template-columns: 1fr;
    gap: 34px;
    justify-items: center;
    text-align: center;
  }

  .hero-copy {
    max-width: 920px;
    justify-items: center;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero .eyebrow {
    justify-content: center;
  }

  .hero h1 {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(4rem, 6.2vw, 6.1rem);
    line-height: 0.93;
  }

  .hero-subtitle {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.12rem;
  }

  .hero-actions {
    justify-items: center;
  }

  .hero-actions-top {
    margin-top: 22px;
  }

  .hero-bullets {
    width: min(100%, 760px);
    max-width: 760px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-bullets li {
    min-height: 50px;
    padding: 13px 12px;
    border-radius: 999px;
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.15;
  }

  .hero-bullets li::before {
    display: none;
  }

  .hero-visual {
    width: 100%;
    max-width: 690px;
    margin: 0 auto;
  }

  .hero-image {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
  }

  .hero-actions-bottom {
    display: none;
  }
}

@media (min-width: 1200px) {
  .hero-grid {
    max-width: 1040px;
  }

  .hero h1 {
    max-width: 940px;
    font-size: clamp(4.6rem, 5.6vw, 6.4rem);
  }

  .hero-visual {
    max-width: 720px;
  }
}

/* =========================================================
   AJUSTE V7 — HERO MOBILE MAIS LIMPO + ANIMAÇÕES SUTIS
   ========================================================= */
.hero {
  padding: 40px 0 46px;
}

.hero-centered {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 20px;
}

.hero-intro {
  max-width: 720px;
  margin: 0 auto;
}

.hero .eyebrow {
  justify-content: center;
  margin-bottom: 12px;
}

.hero h1 {
  max-width: 680px;
  margin: 0 auto 14px;
  font-size: clamp(2.7rem, 11.5vw, 4.05rem);
  line-height: 0.94;
}

.hero-subtitle {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.55;
}

.hero-showcase {
  width: 100%;
  max-width: 440px;
  margin: 4px auto 0;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(43, 15, 22, 0.18);
  animation: floatMockup 5.5s ease-in-out infinite;
  will-change: transform;
}

.hero-actions-clean {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  gap: 9px;
}

.hero-actions-clean .button {
  width: 100%;
}

.hero-benefits-strip {
  padding: 14px 0;
  background: rgba(255, 248, 239, 0.88);
  border-top: 1px solid rgba(101, 38, 55, 0.08);
  border-bottom: 1px solid rgba(101, 38, 55, 0.08);
}

.hero-benefits-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.hero-benefits-inner span {
  display: grid;
  place-items: center;
  min-height: 38px;
  padding: 9px 10px;
  border: 1px solid rgba(101, 38, 55, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(43, 33, 28, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

/* Entrada suave no hero */
.hero .eyebrow,
.hero h1,
.hero-subtitle,
.hero-showcase,
.hero-actions-clean {
  animation: fadeUpHero 0.8s ease both;
}

.hero h1 { animation-delay: 0.06s; }
.hero-subtitle { animation-delay: 0.14s; }
.hero-showcase { animation-delay: 0.24s; }
.hero-actions-clean { animation-delay: 0.34s; }

/* Brilho discreto nos botões principais */
.button-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button-primary::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 auto 0 -120%;
  width: 82%;
  background: linear-gradient(120deg, transparent, rgba(255, 248, 239, 0.26), transparent);
  animation: buttonShine 3.8s ease-in-out infinite;
  pointer-events: none;
}

/* Reveal real ao rolar */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: none !important;
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatMockup {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes fadeUpHero {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonShine {
  0% { left: -120%; }
  45%, 100% { left: 130%; }
}

@media (min-width: 560px) {
  .hero-benefits-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 820px;
  }
}

@media (min-width: 760px) {
  .topbar-inner {
    position: relative;
    display: flex;
    align-items: center;
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
  }

  .menu-dropdown {
    position: relative;
    z-index: 2;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }

  .hero {
    padding: 76px 0 78px;
  }

  .hero-centered {
    gap: 26px;
  }

  .hero-intro {
    max-width: 980px;
  }

  .hero h1 {
    max-width: 900px;
    font-size: clamp(4.2rem, 6.1vw, 6.25rem);
    line-height: 0.93;
  }

  .hero-subtitle {
    max-width: 720px;
    font-size: 1.14rem;
  }

  .hero-showcase {
    max-width: 690px;
  }

  .hero-image {
    max-height: 600px;
    border-radius: 30px;
  }

  .hero-actions-clean {
    max-width: 430px;
  }

  .hero-benefits-strip {
    padding: 18px 0;
  }
}

@media (min-width: 1200px) {
  .hero h1 {
    max-width: 980px;
    font-size: clamp(4.8rem, 5.4vw, 6.7rem);
  }

  .hero-showcase {
    max-width: 740px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image,
  .hero .eyebrow,
  .hero h1,
  .hero-subtitle,
  .hero-showcase,
  .hero-actions-clean,
  .button-primary::after,
  .js .reveal {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .js .reveal {
    opacity: 1 !important;
  }
}

/* =========================================================
   AJUSTE V8 — PROVA SOCIAL + VÍDEO DEMO NO CELULAR
   ========================================================= */
.video-frame {
  width: min(100%, 330px);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(255, 248, 239, 0.88), rgba(248, 235, 220, 0.58));
  box-shadow: 0 24px 70px rgba(43, 15, 22, 0.18);
}

.demo-phone-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.social-proof-section {
  overflow: hidden;
}

.social-proof-section .section-heading {
  max-width: 790px;
  margin-inline: auto;
}

.testimonial-marquee {
  position: relative;
  width: min(100%, 720px);
  height: min(118vw, 540px);
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(101, 38, 55, 0.11);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 183, 109, 0.15), transparent 32%),
    rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-soft);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
  display: flex;
  flex-direction: column;
  animation: testimonialScroll 36s linear infinite;
  will-change: transform;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-group {
  display: grid;
  gap: 16px;
  padding: 16px;
}

.testimonial-card {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(101, 38, 55, 0.10);
  border-radius: 22px;
  background: var(--cream-100);
  box-shadow: 0 14px 34px rgba(43, 15, 22, 0.11);
}

@keyframes testimonialScroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@media (min-width: 760px) {
  .video-frame {
    width: min(100%, 380px);
    max-height: 660px;
  }

  .testimonial-marquee {
    width: min(100%, 860px);
    height: 640px;
    margin-top: 42px;
    border-radius: 34px;
  }

  .testimonial-track {
    animation-duration: 42s;
  }

  .testimonial-group {
    gap: 22px;
    padding: 22px;
  }

  .testimonial-card {
    border-radius: 28px;
  }
}

@media (min-width: 1080px) {
  .social-proof-section {
    padding-top: 92px;
    padding-bottom: 98px;
  }

  .testimonial-marquee {
    height: 700px;
  }
}

@media (max-width: 559px) {
  .video-frame {
    width: min(100%, 310px);
    border-radius: 26px;
  }

  .testimonial-marquee {
    height: 500px;
    margin-top: 28px;
  }

  .testimonial-group {
    gap: 12px;
    padding: 12px;
  }

  .testimonial-card {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    animation: none !important;
    transform: none !important;
  }
}

/* Ajustes V9 — mockups fiéis ao entregável real */
.solution-experience-frame img,
.scripts-real-frame img {
  object-position: center 45%;
}

.kit-showcase {
  max-width: 760px;
}

.kit-full-image {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
}

.offer-visual-accurate {
  align-self: center;
  max-width: 520px;
}

.kit-offer-image {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: cover !important;
  object-position: center 42% !important;
}

@media (max-width: 759px) {
  .kit-showcase {
    max-width: 100%;
  }

  .kit-full-image {
    border-radius: 22px;
  }

  .kit-offer-image {
    aspect-ratio: 4 / 5 !important;
    max-height: 420px;
  }
}

@media (min-width: 760px) {
  .solution-experience-frame {
    max-width: 520px;
  }

  .scripts-real-frame {
    max-width: 560px;
  }
}

/* V10 — correções de coerência visual e redesign de oferta */
.scripts-real-frame {
  overflow: visible;
  align-self: start;
}

.scripts-real-frame img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center top !important;
  display: block;
}

.demo-cards-accurate {
  align-items: start;
}

.demo-card {
  overflow: hidden;
}

.demo-media {
  background: #f5eee7;
}

.demo-copy {
  padding: 18px;
}

.demo-copy h3 {
  margin-bottom: 8px;
}

.demo-video,
.demo-media img {
  width: 100%;
  display: block;
}

.demo-card-phone-accurate .demo-media-video {
  background: #2a1119;
}

.demo-card-phone-accurate .demo-video {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.demo-card-print-accurate .demo-media {
  background: #fbf6f0;
}

.demo-card-print-accurate .demo-media img {
  aspect-ratio: auto !important;
  object-fit: contain !important;
}

.offer-heading {
  margin-bottom: 28px;
}

.offer-heading p:last-child {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.checkout-section {
  padding-top: 52px;
}

.offer-card {
  margin-top: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(252,247,243,0.97));
  border: 1px solid rgba(111, 47, 68, 0.10);
  box-shadow: 0 22px 60px rgba(43, 15, 22, 0.10);
  padding: 18px;
  gap: 18px;
}

.offer-main {
  display: grid;
  gap: 18px;
}

.offer-visual-accurate {
  width: 100%;
  max-width: none;
}

.kit-offer-image {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block;
}

.offer-content {
  padding: 4px;
}

.offer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.offer-pills span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(111, 47, 68, 0.12);
  color: var(--wine-900);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.offer-content-title {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.55rem, 5vw, 2.2rem);
  line-height: 1.04;
}

.offer-list {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.offer-list li {
  list-style: none;
  position: relative;
  padding: 14px 14px 14px 46px;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(111, 47, 68, 0.12);
  box-shadow: 0 8px 24px rgba(43, 15, 22, 0.05);
}

.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--wine-900);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.price-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #5d1930 0%, #3b1220 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 22px 50px rgba(43, 15, 22, 0.22);
  padding: 26px 20px;
}

.price-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.14), transparent 34%);
  pointer-events: none;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.price-box .price-label,
.price-box p,
.price-box .microcopy {
  color: rgba(255,255,255,0.84);
}

.price-box .price-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-box .price {
  color: #fff;
  line-height: 0.9;
  margin-bottom: 12px;
  text-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.price-points {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: grid;
  gap: 10px;
}

.price-points li {
  position: relative;
  padding-left: 28px;
  color: #fff;
  font-weight: 600;
}

.price-points li::before {
  content: "•";
  position: absolute;
  left: 10px;
  top: 0;
  color: #f5d9b8;
}

.price-box .button-primary {
  background: #fff;
  color: var(--wine-900);
  border: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.price-box .button-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}

.price-box .button-primary::after {
  background: linear-gradient(120deg, transparent, rgba(111,47,68,0.14), transparent);
}

@media (min-width: 760px) {
  .demo-cards-accurate {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-card-phone-accurate .demo-video {
    aspect-ratio: 4 / 5;
  }

  .demo-card-print-accurate .demo-media img {
    min-height: 0;
  }

  .offer-card {
    grid-template-columns: minmax(0, 1.38fr) minmax(320px, 0.82fr);
    align-items: start;
    padding: 22px;
  }

  .offer-main {
    grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
    align-items: start;
    gap: 22px;
  }

  .offer-content {
    padding-top: 6px;
  }
}

@media (max-width: 759px) {
  .scripts-real-frame img {
    border-radius: 22px;
  }

  .offer-card {
    padding: 14px;
  }

  .offer-content-title {
    font-size: 1.45rem;
  }

  .offer-pills span {
    font-size: 0.78rem;
  }
}

/* V11 — nova oferta responsiva e remoção de vídeo duplicado */
.demo-card-phone-accurate .demo-media-image {
  background: #2a1119;
}

.demo-card-phone-accurate .demo-media-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
}

.offer-layout {
  display: grid;
  gap: 20px;
  align-items: start;
}

.offer-info-panel {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(252,247,243,0.95));
  border: 1px solid rgba(111, 47, 68, 0.10);
  box-shadow: 0 18px 46px rgba(43, 15, 22, 0.08);
}

.offer-visual-panel {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(43, 15, 22, 0.10);
  background: #fff;
}

.offer-copy-panel {
  padding: 2px 4px 0;
}

.offer-copy-panel > p {
  margin-bottom: 0;
}

.offer-price-box {
  height: fit-content;
}

.offer-includes {
  margin-top: 20px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(111, 47, 68, 0.10);
  box-shadow: 0 16px 40px rgba(43, 15, 22, 0.06);
}

.offer-includes-title {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  line-height: 1.04;
  color: var(--ink);
}

.offer-list-grid {
  display: grid;
  gap: 12px;
}

.offer-item {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fcf8f4);
  border: 1px solid rgba(111, 47, 68, 0.10);
  box-shadow: 0 10px 24px rgba(43, 15, 22, 0.05);
}

.offer-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.98rem;
}

.offer-item span {
  display: block;
  color: var(--ink-700);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (min-width: 760px) {
  .offer-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.7fr);
    gap: 24px;
  }

  .offer-info-panel {
    grid-template-columns: minmax(260px, 370px) minmax(0, 1fr);
    align-items: center;
    padding: 22px;
  }

  .offer-includes {
    padding: 22px;
  }

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

@media (min-width: 1120px) {
  .offer-includes {
    margin-top: 22px;
  }

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

/* V12 — oferta simplificada e menos poluída no mobile */
.checkout-section {
  padding-top: 54px;
}

.offer-heading-simple {
  margin-bottom: 24px;
}

.offer-summary-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 22px 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, #5b1830 0%, #3a1220 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 52px rgba(43, 15, 22, 0.18);
}

.offer-summary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.14), transparent 32%);
  pointer-events: none;
}

.offer-summary-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.offer-summary-card .offer-badge {
  margin-bottom: 0;
}

.offer-summary-card .price-label,
.offer-summary-card .microcopy,
.offer-summary-text {
  color: rgba(255,255,255,0.84);
}

.offer-summary-card .price {
  margin: 4px 0 0;
  color: #fff;
  line-height: .92;
}

.offer-summary-text {
  margin: 0;
  max-width: 52ch;
}

.offer-pills-simple {
  gap: 8px;
}

.offer-pills-simple span {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
}

.offer-price-points {
  margin: 2px 0 6px;
}

.offer-summary-card .button-primary {
  background: #fff;
  color: var(--wine-900);
  border: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.offer-summary-card .button-primary:hover {
  background: #fff;
}

.offer-summary-card .button-primary::after {
  background: linear-gradient(120deg, transparent, rgba(111,47,68,0.14), transparent);
}

.offer-showcase {
  margin-top: 18px;
  display: grid;
  gap: 18px;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(111, 47, 68, 0.10);
  box-shadow: 0 16px 40px rgba(43, 15, 22, 0.06);
}

.offer-showcase-visual {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 32px rgba(43, 15, 22, 0.08);
}

.offer-showcase-copy {
  padding: 2px 2px 0;
}

.offer-showcase-copy .offer-includes-title {
  margin-bottom: 14px;
}

.offer-clean-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-clean-list li {
  position: relative;
  padding: 0 0 12px 26px;
  border-bottom: 1px solid rgba(111, 47, 68, 0.10);
}

.offer-clean-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.offer-clean-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--wine-900);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

.offer-clean-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.96rem;
}

.offer-clean-list span {
  display: block;
  color: rgba(43, 33, 28, 0.72);
  font-size: 0.9rem;
  line-height: 1.48;
}

@media (min-width: 760px) {
  .offer-summary-card {
    padding: 24px 24px;
  }

  .offer-summary-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }

  .offer-showcase {
    grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
    gap: 22px;
    padding: 20px;
    align-items: start;
  }

  .offer-clean-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

  .offer-clean-list li:last-child {
    border-bottom: 1px solid rgba(111, 47, 68, 0.10);
    padding-bottom: 12px;
  }
}

@media (max-width: 759px) {
  .offer-summary-card,
  .offer-showcase {
    border-radius: 24px;
  }

  .offer-summary-card {
    padding: 20px 16px;
  }

  .offer-showcase {
    padding: 14px;
  }

  .offer-clean-list li {
    padding-left: 24px;
  }

  .offer-clean-list strong {
    font-size: 0.94rem;
  }

  .offer-clean-list span {
    font-size: 0.88rem;
  }
}

/* V13 — hero sem corte, oferta mais elegante e bônus em carrossel */
.hero-showcase {
  max-width: 340px !important;
}

.hero-image {
  aspect-ratio: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,235,220,0.94));
  padding: 10px;
}

@media (min-width: 760px) {
  .hero-showcase {
    max-width: 520px !important;
  }

  .hero-image {
    padding: 14px;
  }
}

@media (min-width: 1200px) {
  .hero-showcase {
    max-width: 560px !important;
  }
}

.offer-stage {
  display: grid;
  gap: 18px;
  align-items: start;
}

.offer-plan-card,
.offer-includes-card {
  border-radius: 28px;
  border: 1px solid rgba(111, 47, 68, 0.10);
  box-shadow: 0 18px 46px rgba(43, 15, 22, 0.08);
}

.offer-plan-card {
  position: relative;
  overflow: hidden;
  padding: 22px 18px;
  background: linear-gradient(145deg, #5d1930 0%, #3b1220 100%);
  color: #fff;
}

.offer-plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.14), transparent 34%);
  pointer-events: none;
}

.offer-plan-chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.offer-plan-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 5vw, 2rem);
  line-height: 1.04;
  color: #fff;
}

.offer-plan-card .price-label,
.offer-plan-card .microcopy,
.offer-plan-copy {
  color: rgba(255,255,255,0.84);
}

.offer-plan-card .price-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-plan-card .price {
  color: #fff;
  margin-bottom: 12px;
  line-height: .92;
}

.offer-plan-copy {
  margin-bottom: 16px;
}

.offer-plan-points {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.offer-plan-points li {
  position: relative;
  padding-left: 24px;
  color: #fff;
  font-weight: 600;
}

.offer-plan-points li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: #f5d9b8;
}

.offer-plan-card .button-primary {
  background: #fff;
  color: var(--wine-900);
  border: none;
}

.offer-includes-card {
  padding: 18px;
  background: rgba(255,255,255,0.92);
}

.offer-includes-head {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.offer-mini-label {
  margin-bottom: 8px;
  color: var(--rose-500);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-includes-head h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.45rem, 4.5vw, 2.2rem);
  line-height: 1.05;
}

.offer-includes-head p:last-child {
  margin-bottom: 0;
}

.offer-includes-body {
  display: grid;
  gap: 16px;
  align-items: start;
}

.offer-preview-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 32px rgba(43, 15, 22, 0.08);
}

.offer-preview-frame .kit-offer-image {
  width: 100%;
  height: auto;
  aspect-ratio: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center top !important;
  display: block;
}

.offer-clean-list-compact {
  gap: 10px;
}

.offer-clean-list-compact li {
  padding: 0 0 10px 24px;
}

.offer-clean-list-compact strong {
  font-size: 0.94rem;
}

.offer-clean-list-compact span {
  font-size: 0.86rem;
}

@media (min-width: 900px) {
  .offer-stage {
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
    gap: 24px;
  }

  .offer-plan-card {
    position: sticky;
    top: 92px;
    padding: 26px 22px;
  }

  .offer-includes-card {
    padding: 22px;
  }

  .offer-includes-body {
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 20px;
  }

  .offer-clean-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }
}

.bonus-carousel {
  margin-top: 28px;
}

.bonus-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.bonus-track::-webkit-scrollbar {
  display: none;
}

.bonus-slide {
  scroll-snap-align: start;
}

.bonus-card img {
  aspect-ratio: auto !important;
  object-fit: contain !important;
  background: #fff;
}

.bonus-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.bonus-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bonus-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(101, 38, 55, 0.22);
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease;
}

.bonus-dot.is-active {
  background: var(--wine-900);
  transform: scale(1.12);
}

.bonus-counter {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-width: 42px;
  justify-content: center;
  color: var(--wine-900);
  font-weight: 800;
}

@media (min-width: 900px) {
  .bonus-carousel {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .bonus-track {
    grid-auto-columns: 100%;
  }
}

/* V14 — bônus inclusos padronizados */
.bonus-card {
  display: flex;
  flex-direction: column;
}

.bonus-media {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(180deg, #fff 0%, #fcf7f2 100%);
}

.bonus-media-head {
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(101, 38, 55, 0.10);
}

.bonus-media-title {
  margin: 0;
  color: var(--wine-900);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bonus-card img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  display: block;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff;
}

.bonus-media img {
  padding: 12px 12px 0;
}

.bonus-slide .bonus-media {
  border-bottom: 1px solid rgba(101, 38, 55, 0.08);
}

.bonus-copy {
  padding: 18px 18px 20px;
}

.bonus-card h3 {
  margin-bottom: 8px;
}

@media (min-width: 760px) {
  .bonus-media-head {
    padding: 18px 20px 12px;
  }

  .bonus-media img {
    padding: 14px 14px 0;
  }

  .bonus-media-title {
    font-size: 0.95rem;
  }
}

/* =========================================================
   V16 — otimização sugerida pós-análise
   foco: hero mais forte, confiança cedo, oferta/garantia mais claras
   ========================================================= */
.hero-v16 {
  padding: 46px 0 52px;
  background:
    radial-gradient(circle at 12% 10%, rgba(181, 110, 117, 0.18), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(215, 183, 109, 0.18), transparent 34%),
    linear-gradient(180deg, #fff8ef 0%, #f8ebdc 100%);
}

.hero-v16-grid {
  display: grid;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.hero-v16-copy {
  max-width: 760px;
  margin: 0 auto;
}

.hero-v16 .eyebrow {
  justify-content: center;
}

.hero-v16 h1 {
  max-width: 780px;
  margin: 0 auto 14px;
  font-size: clamp(2.65rem, 11vw, 4.35rem);
  line-height: 0.94;
}

.hero-v16 .hero-subtitle {
  max-width: 650px;
  margin: 0 auto 16px;
  font-size: 1rem;
}

.hero-proof-line {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-width: 520px;
  margin: 0 auto 18px;
  padding: 11px 14px;
  border: 1px solid rgba(101, 38, 55, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 10px 26px rgba(43, 15, 22, 0.06);
  color: var(--wine-900);
  font-size: 0.82rem;
  line-height: 1.25;
}

.hero-proof-line span {
  color: var(--gold-300);
  letter-spacing: 0.08em;
  line-height: 1;
}

.hero-actions-v16 {
  max-width: 430px;
}

.hero-actions-v16 .button {
  min-height: 54px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.hero-showcase-v16 {
  max-width: 390px !important;
}

.hero-showcase-v16 .hero-image {
  width: 100%;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  padding: 10px;
  border: 1px solid rgba(101, 38, 55, 0.10);
  background: rgba(255, 255, 255, 0.72);
}

.trust-bar-v16 {
  padding: 14px 0;
  background: #fffdf8;
  border-top: 1px solid rgba(101, 38, 55, 0.08);
  border-bottom: 1px solid rgba(101, 38, 55, 0.08);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.trust-bar-grid span {
  display: grid;
  gap: 2px;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(248, 235, 220, 0.60);
  border: 1px solid rgba(101, 38, 55, 0.08);
  text-align: center;
}

.trust-bar-grid strong {
  color: var(--wine-900);
  font-size: 0.92rem;
  line-height: 1.2;
}

.trust-bar-grid small {
  color: rgba(43, 33, 28, 0.68);
  font-size: 0.78rem;
  line-height: 1.35;
}

.checkout-section {
  background:
    radial-gradient(circle at top right, rgba(215, 183, 109, 0.14), transparent 32%),
    linear-gradient(180deg, #fff8ef 0%, #f7ebdf 100%);
}

.checkout-section .offer-heading-simple h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.offer-stage {
  max-width: 1080px;
  margin: 0 auto;
}

.offer-plan-card {
  box-shadow: 0 28px 70px rgba(43, 15, 22, 0.20);
}

.offer-plan-card .button-primary {
  min-height: 52px;
}

.offer-includes-card {
  background: rgba(255, 255, 255, 0.94);
}

.offer-pills-simple span {
  font-size: 0.78rem;
  font-weight: 900;
}

.guarantee-section-v16 {
  background: #fff8ef;
}

.guarantee-card-v16 {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(215, 183, 109, 0.16), transparent 34%),
    #ffffff;
  border: 1px solid rgba(101, 38, 55, 0.10);
  box-shadow: 0 18px 46px rgba(43, 15, 22, 0.08);
  text-align: center;
}

.guarantee-card-v16 .guarantee-seal {
  margin: 0 auto;
}

.guarantee-card-v16 h2 {
  margin-bottom: 8px;
}

.guarantee-card-v16 p:last-child {
  margin-bottom: 0;
}

.final-cta-v16 {
  background:
    radial-gradient(circle at top center, rgba(215, 183, 109, 0.14), transparent 32%),
    linear-gradient(180deg, #4b1b28 0%, #2b0f16 100%);
}

.final-cta-v16 h2,
.final-cta-v16 p,
.final-cta-v16 .eyebrow {
  color: #fff8ef;
}

.final-cta-v16 .button-primary {
  margin-top: 10px;
  background: #fff8ef;
  color: var(--wine-900);
  border-color: rgba(255, 255, 255, 0.20);
}

.final-cta-v16 .microcopy {
  color: rgba(255, 248, 239, 0.78);
}

@media (min-width: 760px) {
  .trust-bar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .guarantee-card-v16 {
    grid-template-columns: auto 1fr;
    text-align: left;
    padding: 30px;
  }

  .guarantee-card-v16 .eyebrow {
    justify-content: flex-start;
  }
}

@media (min-width: 900px) {
  .hero-v16 {
    padding: 74px 0 72px;
  }

  .hero-v16-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.76fr);
    gap: 46px;
    text-align: left;
  }

  .hero-v16-copy {
    max-width: 680px;
    margin: 0;
  }

  .hero-v16 .eyebrow {
    justify-content: flex-start;
  }

  .hero-v16 h1 {
    margin-left: 0;
    margin-right: 0;
    max-width: 720px;
    font-size: clamp(4.2rem, 5.7vw, 6.2rem);
  }

  .hero-v16 .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
    max-width: 610px;
    font-size: 1.12rem;
  }

  .hero-proof-line {
    margin-left: 0;
    align-items: flex-start;
    text-align: left;
    border-radius: 20px;
  }

  .hero-actions-v16 {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-showcase-v16 {
    max-width: 500px !important;
  }

  .hero-showcase-v16 .hero-image {
    padding: 14px;
  }
}

@media (max-width: 759px) {
  .hero-v16 h1 {
    font-size: clamp(2.42rem, 10vw, 3.3rem);
  }

  .hero-v16 .hero-subtitle {
    font-size: 0.98rem;
  }

  .hero-proof-line {
    width: 100%;
    border-radius: 18px;
  }

  .hero-actions-v16 .button {
    width: 100%;
  }

  .trust-bar-grid span {
    text-align: left;
  }
}
