:root {
  --ink: #13222b;
  --muted: #69747a;
  --line: #e7ded4;
  --paper: #fff8f0;
  --white: #ffffff;
  --orange: #ff8200;
  --orange-deep: #e46600;
  --amber: #ffb048;
  --slate: #1b2b34;
  --dark: #0c151b;
  --shadow: 0 24px 80px rgba(19, 34, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 40px rgba(19, 34, 43, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transition: background 220ms ease, box-shadow 220ms ease, opacity 220ms ease, padding 220ms ease;
}

.site-header.scrolled .brand,
.site-header.menu-open .brand {
  opacity: 1;
  pointer-events: auto;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(12, 21, 27, 0.12);
}

.brand-logo {
  width: clamp(136px, 12vw, 178px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  transition: filter 220ms ease;
}

.site-header.scrolled .brand-logo,
.site-header.menu-open .brand-logo {
  filter: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--orange);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

/* "Entrar" no hero — visível só no mobile (no desktop já há no header). */
.hero-login {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 7px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 96svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding-bottom: clamp(70px, 7vw, 104px);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 21, 27, 0.92) 0%, rgba(12, 21, 27, 0.74) 39%, rgba(12, 21, 27, 0.1) 78%),
    linear-gradient(0deg, rgba(255, 130, 0, 0.16), rgba(12, 21, 27, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 80px;
  color: var(--white);
}

.hero-logo {
  width: clamp(168px, 16vw, 240px);
  height: auto;
  margin-bottom: 32px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.05rem, 6.2vw, 6.65rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 50px;
  padding: 10px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--orange);
  color: var(--dark);
}

.button.primary:hover {
  background: var(--amber);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
}

.button.dark {
  background: var(--dark);
  color: var(--white);
}

.button.secondary-light {
  border-color: rgba(19, 34, 43, 0.18);
  color: var(--ink);
}

.plans-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: stretch;
  padding: clamp(62px, 9vw, 116px) clamp(18px, 6vw, 76px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.plans-spotlight-copy {
  align-self: center;
}

.plans-spotlight-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.4vw, 4.35rem);
  line-height: 1;
}

.plans-spotlight-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.plans-spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.spot-plan,
.spot-return {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  min-height: 250px;
  padding: 26px;
  background: #fffaf4;
}

.spot-plan.premium {
  background: var(--dark);
  color: var(--white);
}

.spot-return {
  grid-column: 1 / -1;
  min-height: 0;
  background: #fff0df;
}

.spot-plan span,
.spot-return span {
  color: var(--orange-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spot-plan.premium span {
  color: var(--amber);
}

.spot-plan strong,
.spot-return strong {
  display: block;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
}

.spot-return strong {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.spot-plan small {
  color: inherit;
  font-size: 0.95rem;
}

.spot-plan p,
.spot-return p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.spot-plan.premium p {
  color: rgba(255, 255, 255, 0.72);
}

.spot-plan a {
  align-self: end;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--dark);
  font-weight: 800;
  text-align: center;
}

.spot-plan:not(.premium) a {
  border: 1px solid rgba(19, 34, 43, 0.18);
  background: transparent;
  color: var(--ink);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.proof-strip div {
  min-width: 0;
  min-height: 132px;
  padding: 30px clamp(18px, 4vw, 56px);
  background: var(--white);
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.28rem, 2.2vw, 1.62rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.proof-strip span,
.section-copy p,
.benefit p,
.step p,
.final-cta p {
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: clamp(72px, 11vw, 150px) clamp(18px, 6vw, 76px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: clamp(36px, 8vw, 100px);
  align-items: start;
}

.section-copy {
  max-width: 760px;
}

.section-copy p {
  max-width: 620px;
  font-size: 1.1rem;
}

.objective-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.objective {
  width: 100%;
  padding: 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.objective:hover,
.objective.active {
  background: #fff0df;
  border-color: rgba(255, 130, 0, 0.34);
  transform: translateX(-4px);
}

.objective span {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}

.objective small {
  color: var(--muted);
  line-height: 1.45;
}

.objective-result {
  margin: 6px 0 0;
  padding: 18px;
  border-radius: 8px;
  background: var(--dark);
  color: var(--white);
  line-height: 1.55;
}

.benefits {
  background: var(--dark);
  color: var(--white);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 52px;
}

.benefit-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.benefit {
  display: grid;
  grid-template-columns: 64px 0.5fr 1fr;
  gap: 28px;
  align-items: start;
  min-height: 150px;
  padding: 30px 0;
  background: var(--dark);
}

.benefit span {
  color: var(--orange);
  font-weight: 800;
}

.benefit p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.workflow {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) 1fr;
  gap: clamp(38px, 8vw, 110px);
  padding: clamp(72px, 11vw, 150px) clamp(18px, 6vw, 76px);
  background: var(--white);
}

.workflow-sticky {
  position: sticky;
  top: 110px;
  align-self: start;
}

.workflow-sticky h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.5rem);
}

.workflow-steps {
  display: grid;
  gap: 26px;
}

.step {
  padding: 0 0 34px 34px;
  border-left: 2px solid var(--line);
}

.step strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 0 20px -56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
}

.segments {
  background: #fff0df;
}

.pricing {
  background: #fff0df;
}

.pricing .section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  align-content: start;
  gap: 18px;
  min-width: 0;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(19, 34, 43, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.plan-card.featured {
  border-color: rgba(255, 130, 0, 0.44);
  background: var(--white);
  box-shadow: var(--shadow);
}

.plan-kicker {
  margin: 0;
  color: var(--orange-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.plan-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.plan-card strong span {
  color: var(--muted);
  font-size: 1rem;
}

.plan-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
}

.segment-grid span {
  min-height: 118px;
  display: grid;
  place-items: center;
  background: #fffaf4;
  font-weight: 800;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: clamp(36px, 8vw, 100px);
  align-items: start;
  padding: clamp(72px, 11vw, 150px) clamp(18px, 6vw, 76px);
  background: var(--ink);
  color: var(--white);
}

.plan-card .button,
.cta-actions .button {
  width: 100%;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.subscription-note {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.subscription-note strong {
  color: var(--white);
  font-size: 1.3rem;
}

.subscription-note span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

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

.final-cta p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.faq {
  background: var(--white);
}

.faq .section-heading {
  max-width: 820px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.faq-item {
  min-width: 0;
  min-height: 190px;
  padding: 28px;
  background: #fffaf4;
}

.faq-item h3 {
  color: var(--ink);
  line-height: 1.2;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding: 34px clamp(18px, 6vw, 76px);
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-segments {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-segments strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.footer-logo {
  width: 142px;
  height: auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(12, 21, 27, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-fab:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 34px rgba(12, 21, 27, 0.4);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 68px;
    padding: 14px 18px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero-login {
    display: inline-flex;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.menu-open .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: rgba(255, 255, 255, 0.97);
    color: var(--ink);
    box-shadow: 0 18px 34px rgba(19, 34, 43, 0.1);
  }

  .site-header.menu-open .site-nav a {
    padding: 17px 18px;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 94svh;
    align-items: end;
    padding-bottom: 64px;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(12, 21, 27, 0.2) 0%, rgba(12, 21, 27, 0.86) 36%, rgba(12, 21, 27, 0.98) 100%),
      linear-gradient(90deg, rgba(12, 21, 27, 0.96) 0%, rgba(12, 21, 27, 0.9) 62%, rgba(12, 21, 27, 0.34) 100%);
  }

  .hero-content {
    width: min(620px, calc(100% - 36px));
    margin: 0 18px;
    padding: 118px 0 72px;
  }

  .proof-strip,
  .plans-spotlight,
  .split,
  .workflow,
  .final-cta,
  .faq-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .plans-spotlight-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    grid-template-columns: 44px 1fr;
    gap: 18px;
  }

  .benefit p {
    grid-column: 2;
  }

  .workflow-sticky {
    position: static;
  }

  .workflow-sticky .button {
    width: fit-content;
  }

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

@media (max-width: 560px) {
  .brand {
    min-height: 42px;
    width: auto;
    overflow: hidden;
    padding: 0;
  }

  .site-header.scrolled .brand,
  .site-header.menu-open .brand {
    width: 160px;
    padding: 5px 10px;
  }

  .brand-logo {
    width: 126px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .site-header.menu-open .site-nav a {
    padding: 16px;
    font-size: 0.96rem;
  }

  .hero {
    min-height: 98svh;
    padding-bottom: 70px;
  }

  .hero-image {
    object-position: 72% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 76px 0 72px;
  }

  .hero-logo {
    width: 150px;
    margin-bottom: 28px;
    padding: 6px 10px;
  }

  .eyebrow {
    margin-bottom: 11px;
    font-size: 0.7rem;
  }

  h1 {
    max-width: 12ch;
    margin-bottom: 16px;
    font-size: clamp(2.24rem, 11vw, 3.12rem);
    line-height: 0.98;
  }

  h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 1.02;
  }

  h3 {
    font-size: 1.12rem;
  }

  .hero-copy {
    max-width: 31ch;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.42;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 10px 16px;
    font-size: 0.94rem;
  }

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

  .button.secondary {
    min-height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    display: grid;
    min-height: auto;
    padding: 20px 16px;
  }

  .proof-strip strong {
    margin-bottom: 4px;
    font-size: 1.16rem;
  }

  .proof-strip span,
  .section-copy p,
  .benefit p,
  .step p,
  .final-cta p {
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .section,
  .workflow,
  .final-cta {
    padding: 64px 16px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .objective-panel,
  .plan-card,
  .subscription-note {
    padding: 12px;
    border-radius: 8px;
  }

  .objective {
    padding: 15px;
  }

  .objective:hover,
  .objective.active {
    transform: none;
  }

  .objective-result {
    padding: 15px;
    font-size: 0.95rem;
  }

  .benefit-list {
    gap: 0;
    background: transparent;
  }

  .benefit {
    grid-template-columns: 36px 1fr;
    min-height: auto;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .benefit:first-child {
    border-top: 0;
  }

  .benefit p {
    grid-column: 1 / -1;
  }

  .workflow {
    gap: 34px;
  }

  .workflow-sticky .button {
    width: 100%;
  }

  .workflow-steps {
    gap: 16px;
  }

  .step {
    padding: 0 0 22px 28px;
  }

  .step strong {
    width: 36px;
    height: 36px;
    margin-left: -47px;
  }

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

  .segment-grid span {
    min-height: 58px;
  }

  .final-cta {
    gap: 28px;
  }

  .pricing-grid {
    gap: 12px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px 90px;
  }

  .footer-contact {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 116px;
  }

  .brand {
    width: auto;
  }

  .site-header.scrolled .brand,
  .site-header.menu-open .brand {
    width: 150px;
  }

  h1 {
    font-size: 2.08rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero-copy {
    max-width: 29ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
