:root {
  --purple: #3a1195;
  --purple-dark: #22065f;
  --purple-light: #6e3ae8;
  --lime: #c8ff00;
  --ink: #171322;
  --muted: #6c6878;
  --surface: #f7f5fb;
  --white: #fff;
  --line: #e8e3f1;
  --shadow: 0 20px 60px rgba(42, 18, 91, 0.12);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white) !important;
  background-image: none !important;
  font:
    400 17px/1.65 "Nunito",
    sans-serif;
}
body.cadastro-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 90% 0, rgba(200, 255, 0, 0.18), transparent 28%),
    var(--surface) !important;
}
img,
video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.clear {
  clear: both;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.eyebrow {
  margin-bottom: 14px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-heading {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-heading h2 {
  margin-bottom: 16px;
  color: var(--purple-dark);
  font-size: clamp(32px, 4vw, 50px);
}
.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}
.botao,
.botaoBanner,
.botaoContratar,
.btn-primary {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
  font:
    800 15px/1 "Nunito",
    sans-serif;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.botao:hover,
.botaoBanner:hover,
.botaoContratar:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--purple-light);
  box-shadow: 0 12px 28px rgba(58, 17, 149, 0.24);
}
.btn-lime {
  background: var(--lime);
  color: var(--purple-dark);
}
.btn-lime:hover {
  background: #d5ff3b;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(47, 10, 126, 0.94);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 34px;
}
#logo {
  flex: 0 0 82px;
}
#logo img {
  width: 82px;
}
#desktopmenu {
  margin-left: 4px;
}
#desktopmenu ul,
#mobilemenu ul {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 28px;
  list-style: none;
}
#desktopmenu a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
}
#desktopmenu a:hover {
  color: var(--lime);
}
#atalhosMenu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}
#atalhosMenu .btnCad {
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--purple-dark);
}
#btnMobile,
#mobilemenu {
  display: none;
}

#banner {
  overflow: hidden;
  padding: 155px 0 90px;
  background:
    radial-gradient(
      circle at 84% 10%,
      rgba(200, 255, 0, 0.19),
      transparent 25%
    ),
    linear-gradient(135deg, #f8f5ff 0%, #fff 62%);
}
.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
}
#mainTitle {
  margin-bottom: 24px;
  color: var(--purple-dark);
  font-size: clamp(44px, 6vw, 70px);
  font-weight: 800;
}
.hero-copy h2 {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.hero-note span {
  color: #2f8b32;
}
.hero-visual {
  position: relative;
}
.hero-media {
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: var(--purple);
  transform: rotate(1.2deg);
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  object-fit: contain;
  background: var(--white);
}
.floating-card {
  position: absolute;
  right: -18px;
  bottom: -28px;
  max-width: 250px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--purple-dark);
  color: var(--white);
  box-shadow: 0 16px 42px rgba(34, 6, 95, 0.28);
  font-size: 14px;
  font-weight: 700;
}
.floating-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--lime);
  font-size: 18px;
}

.trust-strip {
  padding: 24px 0;
  background: var(--purple-dark);
  color: var(--white);
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 6vw, 80px);
  flex-wrap: wrap;
}
.trust-items span {
  font-size: 15px;
  font-weight: 800;
}
.trust-items span::before {
  content: "\2713";
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-right: 9px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--purple-dark);
}

section.content-section {
  padding: 96px 0;
}
.problem-box {
  display: grid;
  padding: 50px;
  border-radius: 28px;
  background: var(--surface);
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}
.problem-box h2 {
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(32px, 4vw, 48px);
}
.problem-box p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}
.problem-box strong {
  color: var(--purple);
}
.steps-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(42, 18, 91, 0.06);
}
.step-number {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 14px;
  background: var(--lime);
  color: var(--purple-dark);
  font-size: 20px;
  font-weight: 900;
}
.step-card h3 {
  margin-bottom: 12px;
  color: var(--purple-dark);
  font-size: 23px;
}
.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.soft-section {
  background: var(--surface);
}
.benefit-card {
  position: relative;
  padding: 28px 28px 28px 70px;
  border-radius: 20px;
  background: var(--white);
  font-weight: 700;
}
.benefit-card::before {
  content: "\2713";
  position: absolute;
  top: 28px;
  left: 26px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: var(--lime);
  color: var(--purple-dark);
}
.comparison-section {
  background: var(--purple-dark);
}
.comparison-section .section-heading h2 {
  color: var(--white);
}
.comparison-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}
.comparison-section .eyebrow {
  color: var(--lime);
}
.comparison-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.2);
  grid-template-columns: 1fr 1fr;
}
.comparison-head {
  padding: 28px 32px;
}
.comparison-head span,
.comparison-head strong {
  display: block;
}
.comparison-head span {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.comparison-head strong {
  font-size: 24px;
}
.comparison-head.comparison-feature {
  background: var(--lime);
  color: var(--purple-dark);
}
.comparison-head.comparison-traditional {
  background: #eeeaf5;
  color: var(--muted);
}
.comparison-item {
  display: flex;
  min-height: 102px;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 30px;
  border-bottom: 1px solid var(--line);
}
.comparison-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.comparison-item i {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 9px;
  font-style: normal;
  font-weight: 900;
}
.comparison-feature.comparison-item i {
  background: var(--lime);
  color: var(--purple-dark);
}
.comparison-traditional.comparison-item {
  border-left: 1px solid var(--line);
  background: #faf9fc;
  color: var(--muted);
}
.comparison-traditional.comparison-item i {
  background: #e9e5ee;
  color: #8a8492;
}
.comparison-item b,
.comparison-item small {
  display: block;
}
.comparison-item b {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 16px;
}
.comparison-item small {
  color: var(--muted);
  font-size: 13px;
}
.comparison-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 34px;
  color: var(--white);
}
.comparison-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}
.comparison-cta strong {
  color: var(--white);
  font-size: 20px;
}
.demo-grid,
.screen-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.demo-copy h2,
.screen-copy h2 {
  color: var(--purple-dark);
  font-size: clamp(34px, 4vw, 50px);
}
.demo-copy p,
.screen-copy p {
  color: var(--muted);
  font-size: 18px;
}
.qr-card {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 18px;
  margin: 26px 0;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.qr-card img {
  width: 100px;
}
.qr-card strong,
.qr-card span {
  display: block;
}
.qr-card span {
  color: var(--muted);
  font-size: 14px;
}
.demo-phone {
  overflow: hidden;
  padding: 12px;
  border-radius: 34px;
  background: var(--purple-dark);
  box-shadow: var(--shadow);
}
.demo-phone img,
.demo-phone video {
  width: 100%;
  border-radius: 24px;
}
.payment-callout {
  padding: 38px;
  border-radius: 26px;
  background: var(--purple);
  color: var(--white);
}
.payment-callout h3 {
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 28px;
}
.payment-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.payment-tags span {
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.screen-media video,
.screen-media img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.check-list {
  margin: 26px 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  margin: 10px 0;
  font-weight: 700;
}
.check-list li::before {
  content: "\2713";
  margin-right: 10px;
  color: var(--purple);
}
.fine-print {
  color: var(--muted);
  font-size: 13px !important;
}

.plans-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.plan-card {
  display: flex;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  flex-direction: column;
}
.plan-card.featured {
  position: relative;
  border: 2px solid var(--purple);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}
.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 900;
  transform: translateX(-50%);
}
.plan-name {
  color: var(--purple);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.plan-price {
  min-height: 84px;
  margin: 14px 0 22px;
  color: var(--purple-dark);
  font-size: 18px;
}
.plan-price strong {
  font-size: 42px;
  letter-spacing: -0.05em;
}
.plan-price del {
  display: block;
  color: var(--muted);
  font-size: 14px;
}
.plan-card .botaoContratar {
  width: 100%;
  margin-bottom: 24px;
}
.plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.plan-card li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.plan-card li::before {
  content: "\2713";
  position: absolute;
  left: 3px;
  color: var(--purple);
  font-weight: 900;
}
.faq-wrap {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}
.faq-intro {
  position: sticky;
  top: 120px;
  height: fit-content;
}
.faq-intro h2 {
  margin-bottom: 18px;
  color: var(--purple-dark);
  font-size: clamp(36px, 4vw, 50px);
}
.faq-intro > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  position: relative;
  padding: 23px 48px 23px 0;
  color: var(--purple-dark);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 4px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--purple);
  font-size: 23px;
}
.faq-list details[open] summary::after {
  content: "−";
  background: var(--purple);
  color: var(--white);
}
.faq-list details p {
  max-width: 650px;
  padding: 0 45px 22px 0;
  color: var(--muted);
  font-size: 16px;
}

#atendimento {
  padding: 96px 0;
  background: var(--purple-dark);
  color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.contact-copy h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 48px;
}
.contact-copy p {
  color: rgba(255, 255, 255, 0.7);
}
.contact-form {
  display: grid;
  gap: 14px;
}
.camposContato,
.campos {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  font:
    600 16px/1.4 "Nunito",
    sans-serif;
  transition:
    border 0.2s,
    box-shadow 0.2s;
}
textarea.camposContato {
  min-height: 130px;
  resize: vertical;
}
.camposContato:focus,
.campos:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 4px rgba(110, 58, 232, 0.12);
}
#status1,
#status2 {
  min-height: 24px;
  color: var(--lime);
  font-weight: 800;
}
#cadastro #status1 {
  color: var(--purple);
}
.site-footer {
  padding: 30px 0;
  background: #17043f;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  font-size: 13px;
}
.top {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: none;
  width: 44px;
  padding: 13px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.cadastro-shell {
  display: grid;
  width: min(1120px, calc(100% - 40px));
  margin: 40px auto 60px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: 0.78fr 1.22fr;
}
.cadastro-aside {
  padding: 56px 44px;
  background: linear-gradient(150deg, var(--purple-dark), var(--purple));
  color: var(--white);
}
.cadastro-aside-logo {
  display: inline-block;
  margin-bottom: 46px;
}
.cadastro-aside-logo img {
  width: 96px;
}
.cadastro-aside h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 42px;
}
.cadastro-aside p {
  color: rgba(255, 255, 255, 0.75);
}
.cadastro-aside ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}
.cadastro-aside li {
  margin: 15px 0;
  font-weight: 700;
}
.cadastro-aside li::before {
  content: "\2713";
  display: inline-grid;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--purple-dark);
}
#cadastro {
  padding: 52px;
  text-align: left;
}
#cadastro h1 {
  margin-bottom: 8px;
  color: var(--purple-dark);
  font-size: 34px;
}
#cadastro h2 {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
}
.cadastro-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.itemCadastro {
  margin: 0;
}
.itemCadastro.full {
  grid-column: 1 / -1;
}
.itemCadastro label {
  display: inline-block;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}
.itemCadastro > label,
.item-label-row {
  display: flex;
  height: 30px;
  align-items: flex-start;
}
.itemCadastro label.opcoes {
  margin: 0;
  font-weight: 700;
}
.item-label-row {
  justify-content: space-between;
  gap: 12px;
}
.item-label-row > label {
  margin: 0;
}
.doc-options {
  display: flex;
  min-height: 20px;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.doc-options input[type="radio"] {
  width: 15px;
  height: 15px;
  margin: 0 1px 0 4px;
  accent-color: var(--purple);
}
.autocomplete {
  position: relative;
  width: 100%;
}
.autocomplete-items {
  position: absolute;
  z-index: 99;
  top: 100%;
  right: 0;
  left: 0;
  max-height: 220px;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.autocomplete-items div {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--purple);
  color: var(--white);
  cursor: pointer;
}
.autocomplete-items div:hover,
.autocomplete-active {
  background: var(--purple-light) !important;
  color: var(--white);
}
.obsCadastro {
  margin: 24px 0 12px;
  color: var(--muted);
  font-size: 13px;
}
.obsCadastro a {
  color: var(--purple);
  text-decoration: underline;
}
#cadastro #btnComecar {
  width: 100%;
  margin-top: 8px;
}

@media (max-width: 980px) {
  #desktopmenu,
  #atalhosMenu {
    display: none;
  }
  #btnMobile {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    cursor: pointer;
    align-content: space-around;
  }
  #btnMobile .linhaBtn {
    height: 2px;
    background: var(--white);
  }
  #mobilemenu {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    padding: 22px 20px 28px;
    background: var(--purple-dark);
  }
  #mobilemenu ul {
    flex-direction: column;
    gap: 4px;
  }
  #mobilemenu a {
    display: block;
    padding: 10px;
    color: var(--white);
    font-weight: 700;
  }
  .hero-grid,
  .demo-grid,
  .screen-grid,
  .contact-grid,
  .cadastro-shell {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 46px;
  }
  .steps-grid,
  .benefits-grid,
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .faq-intro {
    position: static;
  }
  .plan-card.featured {
    transform: none;
  }
  .cadastro-aside {
    padding: 42px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }
  .container {
    width: min(100% - 28px, 1160px);
  }
  .nav-wrap {
    min-height: 68px;
  }
  #logo img {
    width: 74px;
  }
  #mobilemenu {
    top: 68px;
  }
  #banner {
    padding: 116px 0 70px;
  }
  #mainTitle {
    font-size: 42px;
  }
  .hero-media video,
  .hero-media img {
    min-height: 0;
  }
  .floating-card {
    right: 8px;
    bottom: -34px;
  }
  section.content-section,
  #atendimento {
    padding: 70px 0;
  }
  .problem-box {
    padding: 32px 26px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .steps-grid,
  .benefits-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .comparison-card {
    grid-template-columns: 1fr;
  }
  .comparison-head.comparison-feature {
    order: 1;
  }
  .comparison-head.comparison-traditional {
    order: 7;
  }
  .comparison-feature.comparison-item:nth-of-type(3) {
    order: 2;
  }
  .comparison-feature.comparison-item:nth-of-type(5) {
    order: 3;
  }
  .comparison-feature.comparison-item:nth-of-type(7) {
    order: 4;
  }
  .comparison-feature.comparison-item:nth-of-type(9) {
    order: 5;
  }
  .comparison-feature.comparison-item:nth-of-type(11) {
    order: 6;
  }
  .comparison-traditional.comparison-item {
    border-left: 0;
  }
  .comparison-cta {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }
  .section-heading {
    margin-bottom: 36px;
  }
  .demo-grid,
  .screen-grid,
  .contact-grid {
    gap: 38px;
  }
  .contact-copy h2 {
    font-size: 38px;
  }
  .cadastro-shell {
    width: min(100% - 20px, 1120px);
    border-radius: 22px;
  }
  .cadastro-aside,
  #cadastro {
    padding: 34px 24px;
  }
  .cadastro-aside h1 {
    font-size: 34px;
  }
  .cadastro-grid {
    grid-template-columns: 1fr;
  }
  .item-label-row {
    height: 30px;
  }
  .itemCadastro.full {
    grid-column: auto;
  }
  .g-recaptcha {
    max-width: 100%;
    transform: scale(0.88);
    transform-origin: left top;
  }
}

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