/* ============================================================
   Vonti — site styles
   ============================================================ */

:root {
  --deep:    #05081C;
  --blue:    #0E1FA0;
  --bright:  #2540FF;
  --glow:    #9DB0FF;
  --white:   #FFFFFF;
  --paper:   #F4F4F6;
  --ink:     #0A0E2A;
  --mute:    #5A5F7A;
  --line:    rgba(255, 255, 255, 0.12);
  --line-dark: rgba(10, 14, 42, 0.10);

  --ff-sans: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  --maxw: 1320px;
  --pad-x: clamp(20px, 4vw, 56px);
  --pad-y: clamp(80px, 12vw, 160px);

  --easing: cubic-bezier(.2, .7, .2, 1);
}

/* ---------------- Reset ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  background: var(--deep);
  color: var(--white);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; -webkit-user-drag: none; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }
::selection { background: var(--bright); color: #fff; }

body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: var(--deep); }
body::-webkit-scrollbar-thumb { background: #1a1f3a; border-radius: 6px; }
body::-webkit-scrollbar-thumb:hover { background: var(--bright); }

/* ---------------- Utilities ---------------- */
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono);
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bright);
}
.kicker::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor;
}
.kicker--glow { color: var(--glow); }

.rule { width: 60px; height: 3px; background: var(--white); margin: 32px 0; }
.rule--bright { background: var(--bright); }

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px var(--pad-x);
  transition: background .3s var(--easing), padding .3s var(--easing), border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(5, 8, 28, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-block: 14px;
}
.site-header .brand img { height: 26px; transition: height .3s var(--easing); }
.site-header.is-scrolled .brand img { height: 22px; }
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--white); text-decoration: none; font-size: 15px; font-weight: 500;
  opacity: 0.78; transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px; border-radius: 8px;
  background: var(--bright); color: var(--white);
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  text-decoration: none; border: 0;
  box-shadow: 0 8px 24px rgba(37, 64, 255, 0.35);
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(37, 64, 255, 0.45); }
.btn--lg {
  padding: 20px 32px; border-radius: 10px;
  font-size: 16px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  gap: 14px;
}
.btn--invert { background: var(--white); color: var(--blue); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25); }
.btn--invert:hover { box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35); }
.btn--ghost {
  background: transparent; border-bottom: 2px solid var(--white); border-radius: 0; padding: 20px 4px;
  box-shadow: none;
  color: var(--white); font-size: 16px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.btn--ghost:hover { transform: none; box-shadow: none; opacity: 0.85; }
.btn .arrow { width: 16px; height: 16px; }
.btn--lg .arrow { width: 18px; height: 18px; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; padding: 140px var(--pad-x) 100px;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center;
}
.hero-grid {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: center;
}
.hero h1 {
  font-size: clamp(48px, 7.4vw, 92px);
  line-height: 0.98;
  margin: 24px 0 0;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero h1 .alt { color: var(--glow); }
.hero p.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  max-width: 560px;
  opacity: 0.9;
  margin: 0;
}
.hero-actions { margin-top: 44px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.arc-lines {
  position: absolute; right: -80px; top: -40px;
  width: 1100px; height: 1100px; pointer-events: none;
  opacity: 0.4;
}
.hero-stripes {
  position: absolute; right: -60px; bottom: -60px; width: 420px; height: 420px; opacity: 0.95;
}

/* terminal mock */
.terminal {
  position: relative;
  background: rgba(5, 8, 28, 0.7);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  font-family: var(--ff-mono);
  font-size: 15px; line-height: 1.85;
  backdrop-filter: blur(8px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  min-height: 320px;
}
.terminal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.dots { display: flex; gap: 8px; }
.dots span { width: 12px; height: 12px; border-radius: 50%; }
.dots span:nth-child(1) { background: #ff5f57; }
.dots span:nth-child(2) { background: #febc2e; }
.dots span:nth-child(3) { background: #28c840; }
.terminal-host { font-size: 12px; opacity: 0.5; letter-spacing: 0.15em; }
.terminal-body .line { opacity: 0; animation: fadeUp .35s var(--easing) forwards; }
.terminal-body .line .num { display: inline-block; width: 24px; opacity: 0.35; font-size: 12px; }
.cursor {
  display: inline-block; width: 8px; height: 16px; vertical-align: middle;
  background: var(--glow); margin-left: 4px; animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.c-mute   { color: #8a8fb8; }
.c-purple { color: #c084fc; }
.c-sky    { color: #7dd3fc; }
.c-mint   { color: #a7f3d0; }

.status-chip {
  position: absolute; right: -20px; top: -20px;
  background: var(--deep); border: 1px solid var(--line);
  padding: 14px 18px; border-radius: 12px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.status-chip .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #28c840; box-shadow: 0 0 12px #28c840;
}
.status-chip .label { font-family: var(--ff-mono); font-size: 10px; opacity: 0.6; letter-spacing: 0.2em; text-transform: uppercase; }
.status-chip .value { font-size: 13px; font-weight: 600; }

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.7; z-index: 3;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 38px; background: var(--white);
  animation: pulseY 2s ease-in-out infinite;
}
@keyframes pulseY {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(0.6); }
}

/* ---------------- Soluções ---------------- */
.solucoes {
  background: var(--paper); color: var(--ink);
  padding: var(--pad-y) var(--pad-x);
}
.solucoes-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
  margin-bottom: 80px;
}
.solucoes-head h2 {
  font-size: clamp(40px, 5.6vw, 72px); line-height: 1.02;
  margin: 24px 0 0; font-weight: 700; letter-spacing: -0.03em; color: var(--ink);
  text-wrap: balance;
}
.solucoes-head h2 .alt { color: var(--bright); }
.solucoes-head p {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55; color: var(--mute); margin: 0 0 8px;
}
.sols {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border: 1px solid var(--line-dark); border-radius: 16px; overflow: hidden;
  background: var(--white);
}
.sol-card {
  padding: 32px 22px;
  border-right: 1px solid var(--line-dark);
  background: var(--white); color: var(--ink);
  cursor: pointer;
  transition: background .35s var(--easing), color .35s var(--easing);
  min-height: 460px;
  display: flex; flex-direction: column;
}
.sol-card:last-child { border-right: 0; }
.sol-card .head {
  display: flex; justify-content: space-between; align-items: start;
  margin-bottom: 40px;
}
.sol-card .num {
  font-family: var(--ff-mono); font-size: 12px; opacity: 0.5; letter-spacing: 0.2em;
}
.sol-card .ic { width: 44px; height: 44px; }
.sol-card .ic line, .sol-card .ic rect, .sol-card .ic circle, .sol-card .ic path, .sol-card .ic polyline {
  stroke: var(--bright); transition: stroke .35s var(--easing);
}
.sol-card .ic circle.fill { fill: var(--bright); }
.sol-card h3 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.15;
  margin: 0 0 12px;
}
.sol-card .desc { font-size: 14px; line-height: 1.55; margin: 0 0 24px; opacity: 0.7; }
.sol-card ul {
  list-style: none; padding: 0; margin: auto 0 0;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0.6; transition: opacity .3s;
}
.sol-card ul li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-mono); font-size: 13.5px;
}
.sol-card ul li::before {
  content: ""; width: 4px; height: 4px; background: var(--bright); border-radius: 50%; flex-shrink: 0;
  transition: background .35s;
}
.sol-card:hover, .sol-card:focus-within {
  background: var(--deep); color: var(--white);
}
.sol-card:hover .ic line, .sol-card:hover .ic rect, .sol-card:hover .ic circle,
.sol-card:hover .ic path, .sol-card:hover .ic polyline { stroke: var(--glow); }
.sol-card:hover .ic circle.fill { fill: var(--glow); }
.sol-card:hover ul { opacity: 1; }
.sol-card:hover ul li::before { background: var(--glow); }
.sol-card:hover .desc { opacity: 0.85; }

/* ---------------- Contato ---------------- */
.contato {
  position: relative; overflow: hidden;
  background: var(--blue); color: var(--white);
  padding: var(--pad-y) var(--pad-x);
}
.contato-stripes { position: absolute; right: -120px; bottom: -120px; width: 520px; height: 520px; opacity: 0.95; }
.contato-arcs    { position: absolute; left: -100px; top: -40px; width: 900px; height: 800px; opacity: 0.3; pointer-events: none; }
.contato-grid {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
}
.contato h2 {
  font-size: clamp(56px, 8vw, 96px); line-height: 0.98;
  margin: 24px 0 0; font-weight: 700; letter-spacing: -0.035em; text-transform: uppercase;
}
.contato p.lead {
  font-size: clamp(18px, 1.5vw, 22px); line-height: 1.5;
  margin: 32px 0 0; opacity: 0.85; max-width: 500px;
}
.contact-list {
  margin-top: 60px; display: flex; flex-direction: column; gap: 20px;
  list-style: none; padding: 0;
}
.contact-item {
  display: flex; align-items: center; gap: 20px;
  background: transparent; border: 0; padding: 0;
  color: var(--white); text-align: left;
  font-family: inherit;
}
.contact-item .ic {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.contact-item:hover .ic { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.7); }
.contact-item .label { font-size: 22px; font-weight: 500; }
.contact-item .copied {
  font-size: 11px; font-family: var(--ff-mono); color: var(--glow); letter-spacing: 0.2em;
  opacity: 0; transition: opacity .2s;
}
.contact-item.is-copied .copied { opacity: 1; }

/* form */
.contact-form {
  background: var(--deep); border-radius: 18px; padding: 44px;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}
.form-step-label {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--glow); margin-bottom: 8px; display: block;
}
.form-heading { font-size: 28px; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.form-fields { display: flex; flex-direction: column; gap: 24px; margin-top: 24px; }
.field label, .form-fields > div > label {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55); display: block; margin-bottom: 4px;
}
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: 0;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
  padding: 10px 0; color: var(--white); font-size: 18px; font-family: inherit;
  transition: border-color .2s;
}
.field textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-bottom-color: var(--glow);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.35); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip {
  padding: 10px 16px; border-radius: 999px;
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white); font-size: 14px; font-weight: 500;
  transition: all .15s;
}
.chip[aria-pressed="true"] { background: var(--bright); border-color: var(--bright); }

.form-submit {
  background: var(--bright); color: var(--white); border: 0;
  padding: 16px 26px; border-radius: 10px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 8px;
  box-shadow: 0 12px 28px rgba(37, 64, 255, 0.4);
  transition: transform .15s, box-shadow .2s;
  width: auto;
  align-self: flex-start;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(37, 64, 255, 0.5); }
.form-submit .arrow { width: 14px; height: 14px; }
.form-foot {
  font-size: 12px; opacity: 0.5; font-family: var(--ff-mono);
  letter-spacing: 0.05em; text-align: left; margin-top: 4px;
}
.form-success {
  text-align: center; padding: 60px 20px;
  display: none;
}
.contact-form.is-sent .form-success { display: block; }
.contact-form.is-sent form { display: none; }
.form-success .check {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bright); margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 12px; }
.form-success p { font-size: 17px; opacity: 0.7; max-width: 360px; margin: 0 auto; line-height: 1.5; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--deep); color: var(--white);
  padding: 80px var(--pad-x) 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--line);
  max-width: var(--maxw); margin: 0 auto;
}
.footer-brand img { height: 30px; }
.footer-brand p { font-size: 15px; line-height: 1.55; opacity: 0.6; margin: 24px 0 0; max-width: 320px; }
.footer-brand .city {
  margin-top: 28px;
  font-family: var(--ff-mono); font-size: 12px; opacity: 0.5; line-height: 1.8; letter-spacing: 0.04em;
}
.footer-col h4 {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--glow); margin: 0 0 22px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-col ul a {
  color: var(--white); opacity: 0.7; text-decoration: none; font-size: 15px;
  transition: opacity .2s;
}
.footer-col ul a:hover { opacity: 1; }
.footer-meta {
  max-width: var(--maxw); margin: 36px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.1em; opacity: 0.5;
  flex-wrap: wrap; gap: 16px;
}
.footer-meta a { color: var(--white); text-decoration: none; }
.footer-meta nav { display: flex; gap: 28px; flex-wrap: wrap; }

/* ---------------- Responsive ---------------- */

/* tablet landscape — collapse grid-of-5 to 2 cols, last card spans both */
@media (max-width: 1200px) {
  .sols { grid-template-columns: repeat(2, 1fr); }
  .sol-card { padding: 36px 32px; min-height: auto; border-right: 0; }
  .sol-card h3 { font-size: 26px; }
  .sol-card .desc { font-size: 15px; }
  .sol-card:nth-child(odd):not(:last-child) { border-right: 1px solid var(--line-dark); }
  .sol-card:not(:nth-last-child(-n+2)):not(:last-child) { border-bottom: 1px solid var(--line-dark); }
  /* 5º card sozinho na linha */
  .sol-card:nth-child(5) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line-dark);
  }
  .sol-card:nth-child(3),
  .sol-card:nth-child(4) { border-bottom: 0; }
  .sol-card:nth-child(3) { border-bottom: 1px solid var(--line-dark); }
  .sol-card:nth-child(4) { border-bottom: 1px solid var(--line-dark); }
}

@media (max-width: 1024px) {
  :root { --pad-y: clamp(72px, 10vw, 120px); }
  .hero { padding-top: 120px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-side { order: 2; max-width: 560px; }
  .solucoes-head, .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
  .status-chip { right: 12px; top: -12px; padding: 10px 14px; }
  .status-chip .value { font-size: 12px; }
}

/* mobile — full-width single column everywhere */
@media (max-width: 720px) {
  :root { --pad-x: 20px; --pad-y: 72px; }

  /* nav: hide secondary links, shrink CTA */
  .nav-links { display: none; }
  .site-header { padding: 18px var(--pad-x); }
  .site-header.is-scrolled { padding-block: 12px; }
  .site-header .brand img { height: 22px; }
  .site-header .btn { padding: 10px 14px; font-size: 13px; gap: 8px; }
  .site-header .btn .arrow { width: 12px; height: 12px; }

  /* hero */
  .hero { padding-top: 100px; padding-bottom: 80px; }
  .hero h1 { font-size: clamp(40px, 11vw, 56px); }
  .hero p.lead { font-size: 17px; }
  .hero-actions .btn { padding: 16px 22px; font-size: 14px; flex: 1 1 auto; justify-content: center; }
  .hero-actions .btn--ghost { padding: 16px 4px; flex: 0 1 auto; }
  .hero-stripes { width: 240px; height: 240px; right: -40px; bottom: -40px; }
  .arc-lines { opacity: 0.25; }
  .scroll-hint { display: none; }

  /* terminal */
  .terminal { font-size: 12.5px; padding: 20px; min-height: 260px; }
  .terminal-head { margin-bottom: 16px; padding-bottom: 14px; }
  .status-chip { right: 8px; top: -10px; padding: 8px 12px; gap: 8px; }
  .status-chip .label { font-size: 9px; }
  .status-chip .value { font-size: 11px; }
  .status-chip .dot { width: 8px; height: 8px; }

  /* solucoes */
  .sols { grid-template-columns: 1fr; border-radius: 14px; }
  .sol-card { padding: 32px 28px; border-right: 0 !important; border-bottom: 1px solid var(--line-dark) !important; min-height: auto; }
  .sol-card:last-child { border-bottom: 0 !important; }
  .sol-card:nth-child(5) { grid-column: auto; border-top: 0; }
  .sol-card h3 { font-size: 24px; }
  .solucoes-head h2 { font-size: clamp(34px, 9vw, 48px); }

  /* contato */
  .contato-grid { gap: 64px; }
  .contato h2 { font-size: clamp(48px, 14vw, 72px); }
  .contact-list { margin-top: 40px; gap: 16px; }
  .contact-item .label { font-size: 18px; }
  .contact-item .ic { width: 44px; height: 44px; }
  .contato-stripes { width: 280px; height: 280px; right: -60px; bottom: -60px; }
  .contato-arcs { opacity: 0.18; }

  /* form */
  .contact-form { padding: 28px 22px; border-radius: 14px; }
  .form-heading { font-size: 22px; }
  .field input, .field textarea { font-size: 16px; } /* prevents iOS zoom */
  .chip { padding: 9px 14px; font-size: 13px; }
  .form-submit { width: 100%; padding: 16px 22px; }

  /* footer */
  .site-footer { padding: 60px var(--pad-x) 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 28px; }
  .footer-meta nav { gap: 20px; }
}

/* very small phones */
@media (max-width: 380px) {
  .site-header .btn span,
  .site-header .btn { font-size: 0; padding: 10px; gap: 0; }
  .site-header .btn .arrow { width: 14px; height: 14px; }
  .hero h1 { font-size: 36px; }
}

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