@font-face {
  font-family: "Geist";
  src:
    local("Geist"),
    url("fonts/Geist.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #09090b;
  --bg-2: #09090b;
  --bg-elev: #141518;
  --ink: #fafafa;
  --ink-soft: rgba(250, 250, 250, 0.74);
  --ink-dim: rgba(250, 250, 250, 0.64);
  --green: #cfff04;
  --green-ink: #0a0a0a;
  --brand-green: #cfff04;
  --font-size-h2: clamp(42px, 4vw, 62px);
  --font-size-h3: clamp(32px, 3vw, 40px);
  --chart-auto: #cfff04;
  --chart-trad: rgba(250, 250, 250, 0.6);
  --chart-robo: rgba(250, 250, 250, 0.32);
  --chart-grid: rgba(255, 255, 255, 0.12);
  --chart-axis-text: rgba(250, 250, 250, 0.55);
  --chart-label-bg: #cfff04;
  --line: rgba(255, 255, 255, 0.1);
  --line-2: rgba(255, 255, 255, 0.16);
  --card: rgba(255, 255, 255, 0.035);
  --card-2: rgba(255, 255, 255, 0.06);
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 22px;
  --space-l: clamp(2rem, 1.7rem + 1.5vw, 3rem);
  --space-xl: clamp(3rem, 2.5rem + 2.5vw, 5rem);
  --space-2xl: clamp(2.5rem, 1.8rem + 3vw, 5rem);
  --section-space: clamp(3.5rem, 2.5rem + 3vw, 6rem);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
h1,
h2,
h3 {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.03;
  margin: 0;
}
.container {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}
.narrow {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (max-width: 480px) {
  .container,
  .narrow {
    padding-inline: 8px;
  }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-block-size: 2.9rem;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.2s var(--ease-out),
    background 0.2s var(--ease-out),
    color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}
.btn-green {
  background: var(--green);
  color: var(--green-ink);
  padding-block: calc(0.75rem + 6px);
}
.btn-white {
  background: #fafafa;
  color: #0a0a0a;
}
.btn-green::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #fff;
  transform: scaleY(0);
  transform-origin: center bottom;
  transition: transform 0.35s var(--ease-out);
  z-index: -1;
  pointer-events: none;
}
@media (hover: hover) {
  .btn-green:hover {
    color: #09090b;
    box-shadow: 0 0 0 1.5px #fff;
  }
  .btn-green:hover::before {
    transform: scaleY(1);
  }
  .btn-white:hover {
    transform: translateY(-2px);
    background: #e6e6e6;
  }
}
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
/* CTA fixo que surge do rodapé quando o botão da hero sai de vista */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: calc(20px + env(safe-area-inset-bottom));
  transform: translate(-50%, calc(100% + 60px));
  z-index: 70;
  pointer-events: none;
  transition: transform 1s var(--ease-out);
  will-change: transform;
}
.sticky-cta.visible {
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.sticky-cta .btn {
  white-space: nowrap;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
@media (hover: hover) {
  .sticky-cta .btn-green:hover {
    box-shadow:
      0 0 0 1.5px #fff,
      0 12px 40px rgba(0, 0, 0, 0.45);
  }
}
@media (min-width: 768px) {
  .sticky-cta {
    bottom: calc(50px + env(safe-area-inset-bottom));
    transform: translate(-50%, calc(100% + 90px));
  }
  .sticky-cta.visible {
    transform: translate(-50%, 0);
  }
}
.eyebrow {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.4rem;
}
.terms {
  font-family: var(--sans);
  color: var(--ink-dim);
  font-size: 0.9rem;
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.terms svg {
  width: 14px;
  height: 14px;
  flex: none;
  opacity: 0.7;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.hero-box .container > .reveal:nth-child(1) {
  transition-delay: 0.1s;
}
.hero-box .container > .reveal:nth-child(2) {
  transition-delay: 0.28s;
}
.hero-box .container > .reveal:nth-child(3) {
  transition-delay: 0.46s;
}
.hero-box .container > .reveal:nth-child(4) {
  transition-delay: 0.64s;
}
.hero-box .container > .reveal:nth-child(5) {
  transition-delay: 0.82s;
}
.final-box-content > .reveal:nth-child(1) {
  transition-delay: 0.1s;
}
.final-box-content > .reveal:nth-child(2) {
  transition-delay: 0.22s;
}
.final-box-content > .reveal:nth-child(3) {
  transition-delay: 0.34s;
}
.final-box-content > .reveal:nth-child(4) {
  transition-delay: 0.46s;
}
/* stagger nos blocos de feature: título aparece primeiro, depois o subtítulo */
.feature-text.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.feature-text .feature-number,
.feature-text .feature-title,
.feature-text .feature-desc {
  opacity: 0;
  transform: translateY(100px);
  transition:
    opacity 1.1s var(--ease-out),
    transform 1.1s var(--ease-out);
}
.feature-text.in .feature-number {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}
.feature-text.in .feature-title {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}
.feature-text.in .feature-desc {
  opacity: 1;
  transform: none;
  transition-delay: 0.65s;
}

/* ===== NAV ===== */
.nav {
  position: absolute;
  top: clamp(18px, 3.4vw, 36px);
  left: 0;
  right: 0;
  z-index: 60;
  background: transparent;
  padding-inline: clamp(24px, 4.5vw, 64px);
}
.nav-inner {
  width: 100%;
  max-width: 1600px;
  height: 80px;
  margin-inline: auto;
  padding-inline: 28px 24px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  color: var(--ink);
  text-decoration: none;
}
.nav .logo img {
  height: 33px;
  width: auto;
  display: block;
  transition: opacity 0.25s var(--ease-out);
}
@media (hover: hover) {
  .nav .logo:hover {
    opacity: 0.78;
  }
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 3vw, 2.35rem);
  margin-left: auto;
}
.desktop-nav > a {
  position: relative;
  color: rgba(250, 250, 250, 0.56);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}
.desktop-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
@media (hover: hover) {
  .desktop-nav > a:hover {
    color: var(--ink);
  }
  .desktop-nav > a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.products-menu {
  position: relative;
}
.products-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(250, 250, 250, 0.56);
  font: inherit;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: color 0.25s var(--ease-out);
}
.products-chevron {
  width: 14px;
  height: 9px;
  overflow: visible;
  transition: transform 0.28s var(--ease-out);
}
.products-chevron path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.products-menu.is-open .products-chevron,
.mobile-products-menu.is-open .products-chevron {
  transform: rotate(180deg);
}
.products-dropdown {
  position: absolute;
  top: calc(100% + 30px);
  right: -24px;
  width: 314px;
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  background: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.22s var(--ease-out),
    transform 0.22s var(--ease-out),
    visibility 0s linear 0.22s;
}
.products-menu.is-open .products-dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition:
    opacity 0.22s var(--ease-out),
    transform 0.22s var(--ease-out),
    visibility 0s;
}
.products-dropdown a {
  padding: 16px 32px;
  color: #fafafa;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
  transition:
    color 0.2s var(--ease-out),
    background 0.2s var(--ease-out);
}
.nav-login {
  min-width: 102px;
  min-height: 48px;
  margin-left: clamp(2rem, 5vw, 3.5rem);
  padding: 12px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fafafa;
  color: #09090b;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition:
    background 0.2s var(--ease-out),
    transform 0.2s var(--ease-out);
}
@media (hover: hover) {
  .products-toggle:hover {
    color: var(--ink);
  }
  .products-dropdown a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }
  .nav-login:hover {
    background: #e6e6e6;
    transform: translateY(-1px);
  }
}

/* mobile menu toggle */
.nav-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  flex: 0 0 auto;
  -webkit-appearance: none;
  appearance: none;
}
.nav-toggle svg {
  width: 40px;
  height: 40px;
  overflow: visible;
}
.nav-toggle path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.35s var(--ease-out);
}
body.menu-open .nav-toggle .nav-line--top {
  transform: translateY(7px) rotate(45deg);
}
body.menu-open .nav-toggle .nav-line--bottom {
  transform: translateY(-7px) rotate(-45deg);
}
body.menu-open {
  overflow: hidden;
}
@media (max-width: 899px) {
  .nav {
    top: 16px;
    padding-inline: 16px;
  }
  .nav-inner {
    height: 72px;
    padding-inline: 24px 16px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
  }
  .nav .logo img {
    height: 33px;
  }
  .desktop-nav {
    display: none;
  }
  .nav-login {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}
@media (max-width: 420px) {
  .nav-inner {
    height: 64px;
    padding-inline: 20px 12px;
  }
  .nav .logo img {
    height: 30px;
  }
}

/* mobile menu overlay */
body.menu-open .nav {
  z-index: 80;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 75;
  background: var(--bg);
  padding: calc(116px + env(safe-area-inset-top)) 32px
    calc(20px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 0.28s var(--ease-out),
    visibility 0s linear 0.28s;
}
body.menu-open .mobile-menu {
  visibility: visible;
  clip-path: inset(0 0 0 0);
  transition:
    clip-path 0.28s var(--ease-out),
    visibility 0s;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
}
.mobile-menu-links > a,
.mobile-products-toggle {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-products-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-top: 0;
  border-inline: 0;
  cursor: pointer;
}
.mobile-products-toggle .products-chevron {
  width: 22px;
  height: 14px;
  margin-right: 4px;
}
.mobile-products-dropdown {
  display: none;
  flex-direction: column;
  padding: 18px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-products-menu.is-open .mobile-products-dropdown {
  display: flex;
}
.mobile-products-dropdown a {
  padding: 16px 8px;
  color: #fafafa;
  font-size: 24px;
  line-height: 1.2;
  text-decoration: none;
}
.mobile-menu-links > a,
.mobile-products-menu,
.mobile-menu-cta {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s var(--ease-out),
    transform 0.45s var(--ease-out);
}
body.menu-open .mobile-menu-links > a,
body.menu-open .mobile-products-menu,
body.menu-open .mobile-menu-cta {
  opacity: 1;
  transform: none;
}
body.menu-open .mobile-menu-links > :nth-child(1) {
  transition-delay: 0.12s;
}
body.menu-open .mobile-menu-links > :nth-child(2) {
  transition-delay: 0.22s;
}
body.menu-open .mobile-menu-links > :nth-child(3) {
  transition-delay: 0.32s;
}
body.menu-open .mobile-menu-links > :nth-child(4) {
  transition-delay: 0.42s;
}
body.menu-open .mobile-menu-cta {
  transition-delay: 0.52s;
}
.mobile-menu-cta {
  margin-top: auto;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  min-block-size: 2.9rem;
  padding: calc(0.75rem + 6px) 30px;
  border-radius: 1800px;
  background: #fff;
  color: #09090b;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.98rem;
  line-height: normal;
  text-decoration: none;
}
@media (max-width: 420px) {
  .mobile-menu {
    padding: calc(104px + env(safe-area-inset-top)) 24px
      calc(20px + env(safe-area-inset-bottom));
  }
}
@media (min-width: 768px) {
  .mobile-menu {
    padding-bottom: calc(50px + env(safe-area-inset-bottom));
  }
}
@media (min-width: 900px) {
  .mobile-menu {
    display: none;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--bg);
  padding: 0;
  min-width: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
}
.hero-box {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: clip;
  background: var(--bg);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--bg);
}
.hero-video-poster,
.hero-video-poster img,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}
/* Keep the first paint black instead of flashing a frozen poster. The poster
   appears only when JS confirms a fallback state; the playing video uses a
   short fade so its first moving frames are visible immediately. */
.hero-video-poster,
.hero-video {
  opacity: 0;
  transition: opacity 180ms var(--ease-out);
}
.hero-video-wrap.is-fallback .hero-video-poster,
.hero-video.is-playing {
  opacity: 1;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at center,
      transparent 44%,
      rgba(0, 0, 0, 0.12) 72%,
      rgba(0, 0, 0, 0.58) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.18) 0%,
      transparent 24%,
      transparent 66%,
      var(--bg) 100%
    );
}
.hero-box .container {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: none;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}
.hero-box .container > * {
  position: absolute;
  inset-inline: 0;
  margin-inline: auto;
}
.hero-heading {
  top: calc(clamp(18px, 3.4vw, 36px) + 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.5vh, 1.5rem);
}
.hero h1 {
  font-size: clamp(2.5rem, 1.8rem + 2.8vw, 4rem);
  max-inline-size: 14ch;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 {
    color: #fafafa;
    background: linear-gradient(
      105deg,
      #fafafa 0%,
      #fafafa 38%,
      #f0abfc 44%,
      #f472b6 47%,
      #fb923c 50%,
      #facc15 53%,
      #a3e635 56%,
      #fafafa 62%,
      #fafafa 100%
    );
    background-size: 300% 100%;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hero-title-shimmer 8s 1s ease-in-out infinite;
  }
  @keyframes hero-title-shimmer {
    0%,
    5% {
      background-position: 100% 50%;
    }
    22%,
    100% {
      background-position: 0% 50%;
    }
  }
}
.hero-actions {
  top: 69%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.hero .lede {
  width: calc(100% - 32px);
  color: var(--ink-soft);
  max-inline-size: 34rem;
  margin-block: 0;
  font-size: clamp(0.95rem, 0.9rem + 0.22vw, 1.08rem);
  line-height: 1.45;
}
.hero .lede strong {
  color: var(--ink);
  font-weight: 600;
}
.hero .eyebrow {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 300;
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: clamp(1.15rem, 1rem + 0.4vw, 1.4rem);
  line-height: 1.2;
}
.hero .eyebrow strong {
  color: var(--ink);
  font-weight: 500;
}
.hero-cta {
  margin: 0;
}
.hero .terms {
  display: none;
}
@media (max-width: 680px) {
  .hero-box .container {
    width: 100%;
    padding-inline: 20px;
  }
  .hero-box .container > .hero-heading {
    top: 128px;
    inset-inline: 20px;
    width: auto;
    max-width: none;
  }
  .hero .eyebrow {
    font-size: clamp(1.05rem, 4.5vw, 1.3rem);
  }
  .hero h1 {
    width: 100%;
    font-size: clamp(2rem, 7.5vw, 2.625rem);
    max-inline-size: 100%;
    overflow-wrap: anywhere;
  }
  .hero-box .container > .hero-actions {
    top: auto;
    bottom: 12%;
    inset-inline: 20px;
    width: auto;
    max-width: none;
    padding-inline: 0;
  }
  .hero .lede {
    width: 100%;
    max-inline-size: 31rem;
    font-size: clamp(0.9rem, 3.7vw, 1rem);
    line-height: 1.45;
    overflow-wrap: anywhere;
  }
}
@media (max-height: 720px) {
  .hero-heading {
    top: calc(clamp(18px, 3.4vw, 36px) + 120px);
  }
  .hero-actions {
    top: 65%;
    bottom: auto;
  }
}
@media (max-height: 720px) and (min-aspect-ratio: 4/3) {
  .nav-inner {
    height: 72px;
  }
  .nav .logo img {
    height: 32px;
  }
  .mobile-menu {
    padding-top: 96px;
  }
}
@media (max-height: 520px) {
  .hero-heading {
    top: 112px;
  }
  .hero h1 {
    font-size: clamp(2rem, 8vh, 2.625rem);
  }
  .hero-actions {
    top: auto;
    bottom: 0;
    gap: 18px;
  }
}
@media (max-width: 680px) and (min-height: 521px) {
  .hero-actions {
    top: auto;
    bottom: 0;
  }
}

/* ===== SECTION SHELL ===== */
.section {
  padding-block: var(--section-space);
}

/* ===== FULLSCROLL FEATURES (referência wembi.ai) ===== */
.feature-scroll {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: var(--section-space);
  background: var(--bg);
  overflow: clip;
}
.feature-grid {
  display: grid;
  gap: clamp(2rem, 3vw, 5rem);
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: 1.05fr 1fr;
  }
  .feature-grid .feature-visual {
    justify-self: start;
  }
}
@media (min-width: 900px) {
  .feature-grid--flip {
    grid-template-columns: 1fr 1.05fr;
  }
  .feature-grid--flip .feature-visual {
    order: 2;
    justify-self: end;
  }
  .feature-grid--flip .feature-text {
    order: 1;
  }
  /* Os assets estáticos são quadrados. O lado acompanha a altura útil da viewport,
       sem ultrapassar a coluna, para não cortar ou deformar a imagem em desktops baixos. */
  .feature-visual.feature-visual--image {
    width: min(100%, calc(100svh - var(--space-2xl) - var(--space-2xl)));
    max-height: min(720px, calc(100svh - var(--space-2xl) - var(--space-2xl)));
    aspect-ratio: 1;
  }
}
.feature-visual {
  aspect-ratio: 4/5;
  max-height: min(84vh, 720px);
  border-radius: 24px;
  background: var(--bg);
  border: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.feature-visual--card {
  aspect-ratio: auto;
  max-height: none;
  background: transparent;
  border: 0;
  overflow: visible;
}
.feature-visual video,
.feature-visual img,
.feature-visual svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-visual--image img {
  object-fit: contain;
}
.feature-visual--video::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      var(--bg) 0%,
      transparent 18%,
      transparent 82%,
      var(--bg) 100%
    ),
    linear-gradient(
      to bottom,
      var(--bg) 0%,
      transparent 18%,
      transparent 82%,
      var(--bg) 100%
    );
}
/* container visual entra só com scale suave de 50% -> 100% ao surgir na viewport */
.feature-visual.reveal {
  opacity: 1;
  transform: scale(0.5);
  transform-origin: center;
  transition: transform 1.4s var(--ease-out);
}
.feature-visual.reveal.in {
  transform: scale(1);
}
.feature-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.feature-number {
  font-family: var(--sans);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.feature-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: clamp(2.4rem, 4.2vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}
.feature-tline {
  display: inline-block;
  width: max-content;
  max-width: 100%;
}
.feature-title mark {
  background: transparent;
  color: inherit;
  padding: 0;
}
.feature-desc {
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 0.98rem + 0.55vw, 1.5rem);
  max-inline-size: 46ch;
  line-height: 1.55;
  margin: clamp(1.25rem, 2.5vh, 2rem) 0 0;
}
.feature-desc strong {
  color: var(--ink);
  font-weight: 600;
}
@media (min-width: 900px) {
  .feature-scroll .feature-text {
    align-self: stretch;
  }
}
@media (max-width: 899px) {
  .feature-scroll {
    min-height: auto;
    padding-block: var(--section-space);
  }
  .feature-visual {
    max-height: none;
    aspect-ratio: 1;
  }
  .feature-desc {
    max-inline-size: 46ch;
  }
  .feature-grid--flip .feature-visual {
    order: -1;
  }
  .feature-grid--flip .feature-text {
    order: 0;
  }
}
@media (min-width: 700px) and (max-width: 899px) and (max-height: 600px) {
  .feature-scroll {
    min-height: 100svh;
  }
  .feature-grid,
  .feature-grid--flip {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(1.5rem, 4vw, 3rem);
  }
  .feature-grid .feature-visual {
    order: 0;
    justify-self: center;
    width: min(100%, 78vh);
    max-height: 78vh;
    aspect-ratio: 1;
  }
  .feature-grid .feature-text {
    order: 0;
  }
  .feature-grid--flip .feature-visual {
    order: 2;
  }
  .feature-grid--flip .feature-text {
    order: 1;
  }
  .feature-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
  }
  .feature-desc {
    font-size: clamp(1rem, 2.3vw, 1.3rem);
    margin-top: 1rem;
  }
}

/* ===== SEÇÃO COM PIN + REVEAL DO SUBTÍTULO POR LETRA ===== */
.feature-scroll--pin .feature-pin {
  width: 100%;
  position: relative;
}
.feature-scroll--pin::before {
  display: none;
}
@media (min-width: 900px) {
  .feature-scroll--pin {
    min-height: 0;
    /* 100vh sticky viewport + 50vh scrub: enough to read the reveal without
       making each feature feel like a scroll trap. */
    height: 150vh;
    padding-block: 0;
    display: block;
    align-items: initial;
    overflow: visible;
  }
  .feature-scroll--pin .feature-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-block: var(--section-space);
  }
}
/* mantém o subtítulo visível; o reveal passa a ser por caractere */
.feature-scroll--pin .feature-text .feature-desc,
.feature-scroll--pin .feature-text.in .feature-desc {
  opacity: 1;
  transform: none;
  transition: none;
}
.feature-scroll--pin .feature-desc .char {
  opacity: 0.58;
  transition: opacity 0.35s var(--ease-out);
}
.feature-scroll--pin .feature-desc .char.is-lit {
  opacity: 1;
  animation: charPulse 0.6s var(--ease-out);
}
@keyframes charPulse {
  0% {
    color: #f0abfc;
  }
  20% {
    color: #f472b6;
  }
  40% {
    color: #fb923c;
  }
  60% {
    color: #facc15;
  }
  80% {
    color: #a3e635;
  }
  100% {
    color: inherit;
  }
}
@media (prefers-reduced-motion: reduce) {
  .feature-scroll--pin .feature-desc .char {
    opacity: 1;
    transition: none;
    animation: none;
  }
}

/* UI mockup card */
.uicard {
  width: min(100%, 26rem);
  margin-inline: auto;
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}
.uicard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.uicard-head span {
  color: var(--ink-dim);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.urow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.6rem;
  font-family: var(--sans);
}
.urow .lbl {
  font-size: 0.95rem;
  font-weight: 500;
}
.urow small {
  display: block;
  color: var(--ink-dim);
  font-size: 0.78rem;
  margin-top: 0.15rem;
}
.switch {
  width: 44px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  flex: none;
  transition: background 0.25s var(--ease-out);
}
.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  transition: left 0.25s var(--ease-out);
}
.switch.on {
  background: var(--green);
}
.switch.on::after {
  left: 21px;
}
.amount-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
}
.agentrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  margin-top: 0.6rem;
  font-family: var(--sans);
}
.agentrow .ai {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--green);
}
.agentrow .ai svg {
  width: 18px;
  height: 18px;
}
.agentrow .meta {
  flex: 1;
  min-width: 0;
}
.agentrow .meta strong {
  font-weight: 600;
  font-size: 0.92rem;
}
.agentrow .add {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1;
  display: grid;
  place-items: center;
  flex: none;
  cursor: pointer;
}

/* Interface sobreposta ao vídeo (seção regras) — adaptada para glassmorphism */
.feature-visual--overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
  opacity: 0.5;
  pointer-events: none;
}
.rules-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: clamp(0.9rem, 3vw, 1.8rem);
  pointer-events: none;
}
.rules-overlay .uicard {
  width: min(100%, 22rem);
  margin: 0;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 26px 70px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  backdrop-filter: blur(24px) saturate(1.5);
}
.rules-overlay .urow,
.rules-overlay .agentrow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.rules-overlay .amount-pill {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.rules-overlay .agentrow .ai,
.rules-overlay .agentrow .add {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
@media (min-width: 900px) {
  .rules-overlay .uicard {
    transform: scale(1.2);
    transform-origin: center;
  }
}
@media (max-width: 899px) {
  .feature-visual--overlay {
    aspect-ratio: 4/5;
    max-height: none;
  }
  .rules-overlay {
    padding: 0.7rem;
  }
  .rules-overlay .uicard {
    width: min(92%, 20rem);
    padding: 0.85rem;
    border-radius: 18px;
  }
  .rules-overlay .urow {
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.45rem;
  }
  .rules-overlay .agentrow {
    padding: 0.55rem 0.75rem;
    margin-top: 0.45rem;
  }
  .rules-overlay .uicard-head {
    margin-bottom: 0.7rem;
  }
}

/* ===== CASHBACK SIMULATOR ===== */
.sim {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: var(--section-space) 16px;
}
@media (max-width: 899px) {
  .sim {
    padding: var(--section-space) 0;
  }
}
.sim > .container {
  position: relative;
  z-index: 1;
}
.sim h2 {
  font-weight: 500;
  font-size: clamp(2.4rem, 4.2vw, 4.5rem);
  letter-spacing: -0.025em;
  max-inline-size: 16ch;
  margin: 0 0 clamp(3.5rem, 7vw, 7.5rem);
  line-height: 1.05;
  color: #fafafa;
  text-wrap: balance;
}
.sim h2 em {
  font-style: normal;
  color: var(--green);
}
.simcard {
  background: transparent;
  color: var(--ink);
  border: 0;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  box-shadow: none;
}
.sim-body {
  display: flex;
  gap: clamp(1.75rem, 4vw, 3.5rem);
}
.sim-controls {
  flex: 0 0 30%;
  max-width: 340px;
}
.sim-control-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.sim-control-label {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 0.95rem + 0.35vw, 1.25rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.sim-control-value {
  flex: none;
  color: var(--ink);
  font-size: clamp(1.65rem, 1.35rem + 1vw, 2.2rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.sim-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--green) var(--pct, 0%),
    rgba(255, 255, 255, 0.18) var(--pct, 0%)
  );
  outline: none;
  cursor: pointer;
}
.sim-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  cursor: grab;
  transition:
    transform 0.18s var(--ease-out),
    box-shadow 0.18s var(--ease-out);
}
.sim-slider::-webkit-slider-thumb:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 7px rgba(207, 255, 4, 0.1);
}
.sim-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.08);
}
.sim-slider::-moz-range-thumb {
  width: 30px;
  height: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  cursor: grab;
}
.sim-slider:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 5px;
}
.sim-range-ends {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.sim-main {
  flex: 1 1 auto;
  min-width: 0;
}
.sim-kpis {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  align-items: start;
  gap: clamp(1.75rem, 3.5vw, 4rem);
  margin-bottom: 1.75rem;
}
.sim-kpi-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 0.94rem + 0.28vw, 1.15rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.sim-kpi-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(250, 250, 250, 0.4);
}
.sim-kpi.primary .sim-kpi-label {
  color: var(--green);
}
.sim-kpi.primary .sim-kpi-label::before {
  background: var(--green);
}
.sim-kpi-value {
  color: var(--ink);
  font-size: clamp(1.6rem, 1.25rem + 1.45vw, 2.25rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.sim-kpi.primary .sim-kpi-value {
  font-size: clamp(2.6rem, 1.8rem + 3.5vw, 4rem);
}
.sim-chart {
  position: relative;
  width: 100%;
  height: clamp(260px, 32vw, 380px);
}
.sim-chart svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.sim-grid line {
  stroke: rgba(250, 250, 250, 0.1);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.sim-area {
  fill: url(#cashback-area-gradient);
}
.sim-chart-line {
  fill: none;
  stroke: url(#cashback-line-gradient);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.28));
}
.sim-draw-clip {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s var(--ease-out);
}
.sim-chart.drawn .sim-draw-clip {
  transform: scaleX(1);
}
.sim-axis {
  position: absolute;
  inset: auto 0 1px;
  height: 22px;
  color: rgba(250, 250, 250, 0.55);
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
}
.sim-axis span {
  position: absolute;
  bottom: 0;
}
.sim-axis-0 {
  left: 2.5%;
}
.sim-axis-12 {
  left: 21.4%;
  transform: translateX(-50%);
}
.sim-axis-36 {
  left: 59.5%;
  transform: translateX(-50%);
}
.sim-axis-60 {
  left: 97.5%;
  transform: translateX(-100%);
}
.sim-how {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}
.sim-how summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sim-how summary::-webkit-details-marker {
  display: none;
}
.sim-how summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s var(--ease-out);
}
.sim-how[open] summary::after {
  transform: rotate(45deg);
}
.sim-how p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 1rem 0 0;
  max-inline-size: 65ch;
}
@media (max-width: 899px) {
  .sim h2 {
    margin-bottom: 3rem;
  }
  .sim-body {
    flex-direction: column;
  }
  .sim-controls {
    width: 100%;
    max-width: none;
  }
  .sim-chart {
    height: auto;
  }
  .sim-chart svg {
    height: auto;
  }
}
@media (max-width: 559px) {
  .sim h2 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10.5vw, 2.65rem);
    line-height: 1.02;
  }
  .sim-control-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
  .sim-control-value {
    font-size: 2rem;
  }
  .sim-kpis {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }
  .sim-kpi.primary {
    grid-column: 1/-1;
    grid-row: 1;
  }
  .sim-kpi.primary .sim-kpi-value {
    font-size: 2.5rem;
  }
  .sim-kpi-value {
    font-size: 1.45rem;
  }
  .sim-kpi-label::before {
    display: none;
  }
  .sim-axis {
    font-size: 0.9rem;
  }
}
@media (min-width: 700px) and (max-width: 899px) and (max-height: 600px) {
  .sim h2 {
    margin-bottom: 2rem;
  }
  .sim-body {
    flex-direction: row;
  }
  .sim-controls {
    flex: 0 0 30%;
    max-width: 280px;
  }
  .sim-chart {
    height: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sim-draw-clip {
    transform: scaleX(1);
  }
}

/* ===== PERKS / MASTERCARD — sticky card stack ===== */
.mc {
  position: relative;
  font-family: var(--sans);
  background: var(--bg);
  padding: clamp(4.5rem, 10vw, 9rem) 16px clamp(6rem, 12vw, 12rem);
}
.mc-stage {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
}
.mc-title {
  position: sticky;
  top: clamp(1.5rem, 4vw, 3.5rem);
  z-index: 20;
  margin: 0 0 clamp(3rem, 7vw, 6rem);
  max-inline-size: 10ch;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-size: clamp(2.6rem, 4.6vw, 4.5rem);
  color: #fafafa;
  text-shadow: 0 2px 50px rgba(9, 9, 11, 0.85);
}
.mc-cards {
  position: relative;
  width: min(100%, 840px);
  margin-left: auto;
  padding-bottom: clamp(4rem, 12vh, 9rem);
}
.mc-cards::after {
  content: "";
  display: block;
  height: 75svh;
}
.benefit-card {
  position: sticky;
  top: calc(clamp(14rem, 28vh, 19rem) + var(--card-offset));
  z-index: var(--card-layer);
  width: 100%;
  height: clamp(320px, 58vw, 640px);
  margin-bottom: clamp(10rem, 32vh, 22rem);
  overflow: hidden;
  border-radius: 24px;
  background: #18181b;
  color: #fafafa;
  box-shadow: 0 -10px 35px rgba(9, 9, 11, 0.38);
}
.benefit-card:last-child {
  margin-bottom: 0;
}
.benefit-card__visual,
.benefit-card__visual::after {
  position: absolute;
  inset: 0;
}
.benefit-card__visual::after {
  content: "";
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(
    180.23deg,
    rgba(24, 24, 27, 0) 44.17%,
    rgba(24, 24, 27, 0.7) 70.49%,
    #18181b 99.76%
  );
}
.benefit-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.benefit-card__info {
  position: absolute;
  z-index: 6;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: clamp(1rem, 2.5vw, 2rem);
}
.benefit-card__title {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.33;
  color: #fafafa;
}
.benefit-card__copy {
  margin: 0;
  max-inline-size: 52ch;
  font-family: var(--sans);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.5;
  color: #fafafa;
}
@media (min-width: 900px) {
  .mc {
    padding-inline: clamp(2rem, 5vw, 5rem);
  }
  .mc-stage {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(2rem, 5vw, 6rem);
    max-width: 1440px;
  }
  .mc-title {
    grid-column: 1;
    top: clamp(2rem, 6vh, 5rem);
    max-inline-size: 7ch;
    margin: 0;
    font-size: clamp(3.5rem, 4.8vw, 4.75rem);
  }
  .mc-cards {
    grid-column: 2;
    width: 100%;
    margin: 0;
    padding-bottom: clamp(5rem, 14vh, 10rem);
  }
  .benefit-card {
    top: calc(clamp(2rem, 6vh, 5rem) + var(--card-offset));
    height: clamp(480px, 68vh, 680px);
    margin-bottom: clamp(12rem, 38vh, 26rem);
  }
}
@media (max-width: 760px) {
  .mc {
    padding: 3rem 16px 6rem;
  }
  .mc-title {
    top: 1rem;
    margin-bottom: 1.5rem;
    font-size: clamp(2.25rem, 9vw, 2.625rem);
    letter-spacing: -0.025em;
  }
  .mc-cards {
    width: 100%;
    padding-bottom: 4rem;
  }
  .mc-cards::after {
    height: 100svh;
  }
  .benefit-card {
    top: calc(8.5rem + var(--card-offset));
    height: 320px;
    margin-bottom: 42vh;
    border-radius: 24px;
  }
  .benefit-card__info {
    padding: 16px;
  }
  .benefit-card__title {
    font-size: 24px;
    line-height: 32px;
  }
  .benefit-card__copy {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 761px) and (max-height: 600px) {
  .mc {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
  .mc-title {
    top: 1rem;
  }
  .mc-cards::after {
    height: 75svh;
  }
  .benefit-card {
    top: calc(5rem + var(--card-offset));
    height: min(72vh, 320px);
    margin-bottom: 75vh;
  }
}

/* ===== FINAL / WAITLIST ===== */
.final {
  position: relative;
  background: var(--bg);
}
.final-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6rem);
  background: var(--bg);
  border: 0;
  width: 100%;
}
.final .container {
  max-width: none;
}
.final-box.reveal {
  opacity: 1;
  transform: scale(0.5);
  transform-origin: center;
  transition: transform 1.05s var(--ease-out);
}
.final-box.reveal.in {
  transform: scale(1);
}
.final-box-content {
  position: relative;
  z-index: 2;
  max-inline-size: 42rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.final h2 {
  font-size: clamp(2.6rem, 1.9rem + 3vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-inline-size: none;
}
.final p {
  color: var(--ink-soft);
  margin: 1.3rem 0 0;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
}
.final p strong {
  color: var(--ink);
  font-weight: 600;
}
@media (min-width: 900px) {
  .final-box-content {
    max-inline-size: 64rem;
  }
}
.final .terms {
  color: var(--ink-dim);
  font-size: 0.82rem;
  margin: 1rem 0 0;
}
.final-cta {
  margin-top: 1.9rem;
  display: flex;
  justify-content: center;
}

/* ===== WAITLIST FORM ===== */
body.waitlist-open {
  overflow: hidden;
}
.waitlist-dialog {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.45s;
}
.waitlist-dialog.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.waitlist-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  cursor: pointer;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  transition: opacity 0.35s var(--ease-out);
}
.waitlist-dialog.is-open .waitlist-backdrop {
  opacity: 1;
}
.waitlist-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 480px);
  height: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #09090b;
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.38);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
}
.waitlist-dialog.is-open .waitlist-panel {
  transform: translateX(0);
}
.waitlist-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  flex: none;
  height: 72px;
  padding: 24px 24px 8px;
}
.waitlist-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(250, 250, 250, 0.18);
  border-radius: 50%;
  background: rgba(250, 250, 250, 0.04);
  color: #fafafa;
  font: 300 29px/1 var(--sans);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.waitlist-close span {
  display: block;
  transform: translateY(-1px);
}
@media (hover: hover) {
  .waitlist-close:hover {
    background: rgba(250, 250, 250, 0.1);
    border-color: rgba(250, 250, 250, 0.35);
  }
}
.waitlist-title {
  padding: 24px 32px 30px;
}
.waitlist-title h2 {
  margin: 0;
  color: #fafafa;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0;
}
.waitlist-title p {
  margin: 4px 0 0;
  color: #a1a1aa;
  font-size: 16px;
  line-height: 24px;
}
.waitlist-view {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: none;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    transform 0.4s var(--ease-out),
    visibility 0s;
}
.waitlist-form-view {
  position: relative;
}
.waitlist-success-view,
.waitlist-error-view {
  position: absolute;
  inset: 72px 0 0;
  opacity: 0;
  transform: translateX(28px);
  visibility: hidden;
  pointer-events: none;
}
.waitlist-panel.is-success .waitlist-form-view,
.waitlist-panel.is-error .waitlist-form-view {
  opacity: 0;
  transform: translateX(-28px);
  visibility: hidden;
  pointer-events: none;
  transition-delay: 0s, 0s, 0.4s;
}
.waitlist-panel.is-success .waitlist-success-view {
  opacity: 1;
  transform: none;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0.1s, 0.1s, 0s;
}
.waitlist-panel.is-error .waitlist-error-view {
  opacity: 1;
  transform: none;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0.1s, 0.1s, 0s;
}
.waitlist-form {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 32px;
}
.waitlist-fields {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  padding: 12px 0 16px;
}
.waitlist-fields::-webkit-scrollbar {
  display: none;
}
.waitlist-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.waitlist-field {
  position: relative;
}
.waitlist-input {
  width: 100%;
  height: 56px;
  padding: 0 44px 0 16px;
  border: 1px solid #52525b;
  border-radius: 16px;
  background: transparent;
  color: #fafafa;
  font: 400 16px/24px var(--sans);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.waitlist-input::placeholder {
  color: #a1a1aa;
  opacity: 1;
}
.waitlist-input:hover {
  border-color: #71717a;
}
.waitlist-input:focus {
  border-color: #fafafa;
  box-shadow: 0 0 0 1px #fafafa;
}
.waitlist-field.has-error .waitlist-input {
  border-color: #ff3b3b;
  box-shadow: 0 0 0 1px #ff3b3b;
}
.waitlist-field.has-error .waitlist-label {
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 16px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0 6px;
  overflow: visible;
  clip: auto;
  white-space: nowrap;
  background: #09090b;
  color: #ff3b3b;
  font: 400 14px/20px var(--sans);
}
.waitlist-error-icon {
  display: none;
  position: absolute;
  top: 17px;
  right: 16px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #a1a1aa;
  color: #09090b;
  font: 600 17px/1 var(--sans);
  pointer-events: none;
}
.waitlist-field.has-error .waitlist-error-icon {
  display: flex;
}
.waitlist-error {
  margin: 10px 0 0;
  color: #ff3b3b;
  font-size: 14px;
  line-height: 20px;
}
.waitlist-submit-wrap {
  margin-top: auto;
  padding: 24px 0 calc(32px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(9, 9, 11, 0), #09090b 30%);
}
.waitlist-consent {
  display: none;
  margin: 0 0 14px;
  text-align: left;
  color: #a1a1aa;
  font-size: 13px;
  line-height: 18px;
}
.waitlist-consent a {
  color: #fafafa;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.waitlist-submit {
  width: 100%;
  min-height: 56px;
  background: #fafafa;
  color: #09090b;
  font-size: 16px;
  font-weight: 500;
}
.waitlist-status {
  min-height: 20px;
  margin: 10px 0 0;
  text-align: center;
  color: #a1a1aa;
  font-size: 14px;
  line-height: 20px;
}
.waitlist-status.is-error {
  color: #ff3b3b;
}
.waitlist-success-content {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.waitlist-success-icon {
  width: 64px;
  height: 64px;
  padding: 6px;
}
.waitlist-success-icon img {
  display: block;
  width: 52px;
  height: 52px;
  max-width: none;
}
.waitlist-success-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.waitlist-success-copy h2 {
  margin: 0;
  color: #fafafa;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0;
}
.waitlist-success-copy p {
  margin: 0;
  color: #a1a1aa;
  font-size: 16px;
  line-height: 24px;
}
.waitlist-success-footer {
  margin-top: auto;
  padding: 24px 32px calc(32px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(9, 9, 11, 0), #09090b 30%);
}
.waitlist-app-link {
  width: 100%;
  min-height: 56px;
  background: var(--green);
  color: var(--green-ink);
  font-size: 16px;
  font-weight: 500;
}
#waitlistOpenApp[hidden],
#waitlistQRCode[hidden],
#waitlistNote[hidden] {
  display: none !important;
}
.waitlist-qr-code {
  width: 9rem;
  height: 9rem;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev, #141518);
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
@media (max-width: 767px) {
  .waitlist-qr-code {
    display: none !important;
  }
}
.waitlist-qr-code svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.waitlist-note {
  font-size: 0.85rem;
  color: var(--ink-soft, rgba(250, 250, 250, 0.68));
  margin: 0;
  text-decoration: underline;
  text-decoration-color: var(--green, #cfff04);
  text-underline-offset: 3px;
}
.waitlist-note strong {
  font-weight: 600;
  color: var(--ink, #fafafa);
}
.waitlist-error-content {
  padding: 48px 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.waitlist-error-symbol {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 4px solid #ef4651;
  border-radius: 50%;
  color: #ef4651;
  font: 400 48px/1 var(--sans);
}
.waitlist-error-symbol span {
  display: block;
  transform: translateY(-2px);
}
.waitlist-error-copy {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.waitlist-error-copy h2 {
  margin: 0;
  color: #fafafa;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0;
}
.waitlist-error-copy p {
  margin: 0;
  color: #a1a1aa;
  font-size: 16px;
  line-height: 24px;
}
.waitlist-error-footer {
  margin-top: auto;
  padding: 24px 32px calc(32px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(9, 9, 11, 0), #09090b 30%);
}
.waitlist-retry {
  width: 100%;
  min-height: 56px;
  background: #fafafa;
  color: #09090b;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 680px) {
  .waitlist-panel {
    top: auto;
    right: 0;
    bottom: var(--waitlist-vv-bottom, 0px);
    width: 100%;
    height: min(778px, var(--waitlist-panel-height, calc(100dvh - 74px)));
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.35);
  }
  .waitlist-dialog.is-open .waitlist-panel {
    transform: translateY(0);
  }
  .waitlist-header {
    height: 72px;
    padding: 16px 16px 8px;
  }
  .waitlist-title {
    padding: 24px 16px 30px;
  }
  .waitlist-form {
    padding: 0 16px;
  }
  .waitlist-submit-wrap {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
  .waitlist-success-content {
    padding: 24px 16px;
  }
  .waitlist-success-footer {
    padding: 24px 16px calc(16px + env(safe-area-inset-bottom));
  }
  .waitlist-error-content {
    padding: 48px 20px 24px;
  }
  .waitlist-error-footer {
    padding: 24px 20px calc(16px + env(safe-area-inset-bottom));
  }
}

/* ===== FAQ (exato do site atual) ===== */
.faq-section {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 100%;
}
.faq-divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  width: 100%;
}
.faq-title {
  position: relative;
  margin: 24px 0;
  color: #fff;
  font-family:
    "Geist",
    -apple-system,
    "system-ui",
    "Segoe UI",
    sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  line-height: 38px;
}
.faq-item-wrapper {
  width: 100%;
}
.faq-item {
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 16px 0;
  padding: 0;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
  text-align: left;
}
.faq-item:hover {
  opacity: 0.7;
}
.faq-question {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--font-size-h2);
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: #fff;
}
.faq-icon-rotated-wrapper {
  display: flex;
  height: 16px;
  width: 32px;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.faq-icon-rotated-wrapper img {
  filter: brightness(0) invert(1);
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.faq-answer {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}
.faq-answer-open {
  max-height: 2000px;
  opacity: 1;
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease 0.1s;
}
.faq-answer p {
  margin: 16px 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--font-size-h2);
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 480px) {
  .faq-question {
    font-size: clamp(1.25rem, 5.6vw, 1.5rem);
  }
  .faq-answer p {
    font-size: clamp(1rem, 4.2vw, 1.125rem);
  }
  .faq-item {
    min-height: 56px;
    margin: 14px 0;
  }
}

/* ===== FOOTER (exato do site atual — lp.pierre.finance) ===== */
.u-container {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (max-width: 480px) {
  .u-container {
    padding-inline: 8px;
  }
}
.footer_wrap .u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.footer_wrap .u-display-contents {
  display: contents;
}
.footer_wrap .u-svg,
.footer_social_wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.footer_wrap {
  color: #fff;
  background-color: var(--bg);
  width: 100%;
}
.footer_contain {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: clamp(4rem, 2.8571rem + 5.7143vw, 8rem);
  padding-bottom: clamp(4rem, 2.8571rem + 5.7143vw, 8rem);
}
.footer_layout {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  column-gap: clamp(2.5rem, 2.0714rem + 2.1429vw, 4rem);
  row-gap: clamp(2.5rem, 2.0714rem + 2.1429vw, 4rem);
}
.footer_content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1 1 auto;
}
.footer_logo_wrap {
  display: block;
  align-self: flex-start;
  width: 8rem;
  max-width: 100%;
  color: #fff !important;
  margin-bottom: clamp(1.75rem, 1.6786rem + 0.3571vw, 2rem);
}
.footer_logo_wrap,
.footer_logo_wrap:link,
.footer_logo_wrap:visited,
.footer_logo_wrap:hover,
.footer_logo_wrap:focus,
.footer_logo_wrap:active,
.footer_logo_wrap .nav_logo,
.footer_logo_wrap svg {
  color: #fff !important;
}
.footer_logo_wrap .u-max-width-full {
  max-width: 100%;
}
.footer_logo_wrap .nav_logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_logo_wrap svg {
  display: block;
  width: 100%;
  height: auto;
}
.footer_social_title {
  font-family: "Geist", Arial, sans-serif;
  font-size: clamp(0.875rem, 0.8393rem + 0.1786vw, 1rem);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: color-mix(in srgb, currentColor 70%, transparent);
  max-width: 24rem;
  margin: 0 0 clamp(1.75rem, 1.6786rem + 0.3571vw, 2rem);
}
.footer_social_wrap {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  column-gap: clamp(0.875rem, 0.8393rem + 0.1786vw, 1rem);
  row-gap: 0.5rem;
}
.footer_social_list {
  display: flex;
  flex-flow: row wrap;
  place-content: center flex-start;
  align-items: center;
  margin-left: -0.5rem;
}
.footer_social_item {
  display: flex;
}
.footer_social_wrapper {
  position: relative;
  width: 2.5rem;
  padding: 0.5rem;
  color: color-mix(in srgb, currentColor 65%, transparent);
  transition: color 0.15s ease;
}
.footer_social_item:hover .footer_social_wrapper,
.footer_social_item:focus-within .footer_social_wrapper {
  color: var(--brand-green);
}
.footer_social_link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.footer_bottom_item.u-gap-2 {
  display: flex;
  flex: none;
  align-items: center;
  column-gap: clamp(0.625rem, 0.5893rem + 0.1786vw, 0.75rem);
}
.footer_bottom_link_wrap {
  flex: none;
  padding: 0.5rem 0;
  color: color-mix(in srgb, currentColor 70%, transparent);
  transition: color 0.15s ease;
  text-decoration: none;
}
.footer_bottom_link_wrap:hover {
  color: var(--brand-green);
}
.footer_bottom_link_text {
  font-family: "Geist", Arial, sans-serif;
  font-size: clamp(0.875rem, 0.8393rem + 0.1786vw, 1rem);
  line-height: 1.5;
  font-weight: 400;
  text-transform: uppercase;
}
.u-flags-marker {
  width: 0.094rem;
  align-self: stretch;
  background-color: rgba(255, 255, 255, 0.1);
}
.u-qrcode-app.pierre-qr-code {
  flex: none;
  aspect-ratio: 1;
  width: clamp(7rem, 9vw, 9rem);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-color: transparent;
  border-radius: 1.5rem;
}
.u-qrcode-app.pierre-qr-code svg {
  display: block;
  width: 100%;
  height: 100%;
}
.footer_bottom_wrap {
  width: 100%;
}
.footer_bottom_contain {
  position: relative;
  z-index: 1;
  width: 100%;
}
.footer_bottom_layout {
  display: flex;
  flex-flow: row wrap;
  place-content: center space-between;
  align-items: center;
  column-gap: clamp(1.25rem, 1.1786rem + 0.3571vw, 1.5rem);
  row-gap: clamp(1.25rem, 1.1786rem + 0.3571vw, 1.5rem);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: 0.094rem solid rgba(255, 255, 255, 0.1);
}
.footer_bottom_text {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  max-width: 60rem;
  margin: 0;
  font-family: "Geist", Arial, sans-serif;
  font-size: clamp(0.875rem, 0.8393rem + 0.1786vw, 1rem);
  line-height: 1.5;
  font-weight: 400;
  text-transform: none;
  color: color-mix(in srgb, currentColor 70%, transparent);
}
.footer_bottom_list {
  display: flex;
  flex-flow: row wrap;
  place-content: center flex-start;
  align-items: center;
}
.footer_bottom_wrap .footer_bottom_item {
  display: flex;
}
@media (max-width: 991px) {
  .footer_content {
    flex: none;
    max-width: 26rem;
  }
  .footer_layout {
    column-gap: clamp(1.5rem, 0.75rem + 3vw, 3rem);
  }
  .u-qrcode-app.pierre-qr-code {
    width: clamp(6.5rem, 10vw, 8rem);
  }
}
@media (max-width: 767px) {
  .footer_layout {
    flex-flow: column;
    align-items: center;
    text-align: center;
    row-gap: 2.5rem;
  }
  .footer_content {
    align-items: center;
    max-width: 100%;
  }
  .footer_logo_wrap {
    align-self: center;
  }
  .footer_social_title {
    text-align: center;
  }
  .footer_social_wrap {
    justify-content: center;
  }
  .footer_wrap .u-button-wrapper {
    justify-content: center;
  }
  .u-qrcode-app.pierre-qr-code {
    display: none !important;
  }
  .footer_bottom_layout {
    justify-content: center;
    text-align: center;
  }
  .footer_bottom_text {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .footer_download-img {
    height: 2.5rem;
  }
  .u-qrcode-app.pierre-qr-code {
    width: 6.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero h1 {
    background: none !important;
    color: #fafafa !important;
    -webkit-text-fill-color: #fafafa !important;
  }
  .btn,
  .btn::before,
  .btn-green,
  .btn-green::before {
    transition-duration: 0.35s !important;
  }
  .nav {
    transition-duration: 0.4s !important;
  }
}

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}
