:root {
  --brand-gray: #10372d;
  --brand-red: #d8c293;
  --brand-red-dark: #bda679;
  --ink: #12362e;
  --muted: #65766f;
  --line: #e4d8c1;
  --surface: #fffaf0;
  --surface-soft: #f4eddf;
  --surface-dark: #0f352b;
  --success: #0f6b50;
  --warning: #d8c293;
  --shadow: 0 18px 48px rgba(16, 55, 45, 0.14);
  --radius: 8px;
  --radius-small: 6px;
  --container: 1180px;
  --header-height: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(216, 194, 147, 0.55);
  outline-offset: 3px;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 12px;
  left: 12px;
  z-index: 10000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--surface-dark);
  background: var(--brand-red);
  border-radius: var(--radius-small);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(255, 250, 240, 0.96);
  border-bottom: 1px solid rgba(228, 216, 193, 0.85);
  backdrop-filter: blur(16px);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-name {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-gray);
  white-space: nowrap;
}

.brand-footer .brand-name {
  color: #fff;
}

.brand-logo {
  display: block;
  width: 58px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--brand-gray);
  font-size: 0.94rem;
  font-weight: 700;
  border-radius: var(--radius-small);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-red);
  background: rgba(216, 194, 147, 0.16);
}

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

.header-phone {
  display: grid;
  color: var(--brand-gray);
  font-size: 0.78rem;
  line-height: 1.25;
  text-align: right;
}

.header-phone strong {
  font-size: 0.98rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--brand-gray);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  color: var(--brand-gray);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--surface-dark);
  background: var(--brand-red);
  box-shadow: 0 12px 30px rgba(216, 194, 147, 0.26);
}

.btn-primary:hover {
  background: var(--brand-red-dark);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-light {
  color: var(--surface-dark);
  background: var(--brand-red);
  box-shadow: 0 12px 30px rgba(216, 194, 147, 0.26);
}

.btn-block {
  width: 100%;
}

.btn-large {
  min-height: 52px;
  padding: 15px 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--brand-red);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: #fff;
  background: var(--surface-dark);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 53, 43, 0.95) 0%, rgba(15, 53, 43, 0.78) 48%, rgba(15, 53, 43, 0.42) 100%),
    linear-gradient(180deg, rgba(15, 53, 43, 0.18) 0%, rgba(15, 53, 43, 0.84) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: center;
  min-height: 700px;
  padding: 72px 0;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-red);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.hero .eyebrow,
.final-cta .eyebrow,
.conversion-band .eyebrow {
  color: #ead9b5;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 3.35rem;
  line-height: 1.02;
}

.hero-subtitle {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-checks {
  display: grid;
  gap: 10px;
  max-width: 680px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.hero-checks li::before {
  position: absolute;
  left: 0;
  color: #8fe0b5;
  content: "✓";
}

.hero-lead {
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-lead h2 {
  margin: 0;
  color: var(--brand-gray);
  font-size: 1.55rem;
  line-height: 1.18;
}

.hero-lead p {
  margin: 14px 0 20px;
  color: var(--muted);
}

.lead-kicker {
  margin: 0 0 10px;
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-lead .text-link {
  margin-top: 16px;
  color: var(--brand-gray);
}

.hero-lead .text-link:hover {
  color: var(--surface-dark);
}

.trust-strip {
  background: var(--brand-gray);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-grid div {
  min-height: 108px;
  padding: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.trust-grid strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.trust-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.35;
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--surface-soft);
}

.section-dark {
  color: #fff;
  background: var(--surface-dark);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading.align-left .btn {
  margin-top: 24px;
}

.section-heading h2,
.conversion-band h2,
.final-cta h2,
.contact-copy h2 {
  margin: 0;
  color: var(--brand-gray);
  font-size: 2.35rem;
  line-height: 1.14;
}

.section-heading p:not(.eyebrow),
.contact-copy p,
.final-cta p,
.conversion-band p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading-invert h2,
.section-heading-invert p:not(.eyebrow),
.final-cta h2,
.final-cta p,
.conversion-band h2,
.conversion-band p {
  color: #fff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card,
.pain-list article,
.segment-grid article,
.proof-card,
.contact-card {
  border-radius: var(--radius);
}

.benefit-card {
  min-height: 230px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(16, 55, 45, 0.06);
}

.card-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 900;
  background: var(--brand-red);
  border-radius: var(--radius-small);
  place-items: center;
}

.benefit-card h3,
.pain-list h3,
.service-card h3,
.segment-grid h3,
.process-list h3,
.proof-card h3 {
  margin: 0;
  color: var(--brand-gray);
  font-size: 1.18rem;
  line-height: 1.22;
}

.benefit-card p,
.pain-list p,
.service-card p,
.segment-grid p,
.process-list p,
.proof-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.conversion-band {
  padding: 54px 0;
  background: var(--surface-dark);
}

.band-grid,
.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 56px;
  align-items: start;
}

.pain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pain-list article {
  min-height: 205px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.pain-list h3 {
  position: relative;
  padding-top: 22px;
}

.pain-list h3::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 3px;
  background: var(--brand-red);
  content: "";
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(16, 55, 45, 0.09);
}

.service-card-featured {
  border-color: rgba(216, 194, 147, 0.65);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.service-card .service-tag {
  width: fit-content;
  margin: 0 0 22px;
  padding: 5px 9px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(216, 194, 147, 0.18);
  border-radius: var(--radius-small);
}

.service-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 20px;
  list-style: none;
}

.service-card .text-link {
  margin-top: auto;
  padding: 12px 18px;
  color: var(--surface-dark);
  background: var(--brand-red);
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  box-shadow: 0 12px 30px rgba(216, 194, 147, 0.22);
}

.service-card .text-link:hover {
  color: var(--surface-dark);
  background: var(--brand-red-dark);
  transform: translateY(-1px);
}

.service-card li {
  position: relative;
  padding-left: 22px;
  color: var(--brand-gray);
  font-weight: 700;
  line-height: 1.35;
}

.service-card li::before {
  position: absolute;
  left: 0;
  color: var(--brand-red);
  content: "✓";
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.segment-grid article {
  min-height: 174px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.segment-grid h3 {
  color: #fff;
}

.segment-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.portfolio-grid figure {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  background: var(--surface-soft);
  border-radius: var(--radius);
}

.portfolio-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 240ms ease;
}

.portfolio-grid figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 8px 10px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(15, 53, 43, 0.84);
  border-radius: var(--radius-small);
}

.portfolio-grid figure:hover img {
  transform: scale(1.04);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  min-height: 240px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-list span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 900;
  background: var(--brand-gray);
  border-radius: var(--radius-small);
  place-items: center;
}

.proof-layout {
  align-items: center;
}

.proof-grid {
  display: grid;
  gap: 16px;
}

.proof-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(16, 55, 45, 0.07);
}

.proof-card span {
  display: inline-block;
  margin-top: 14px;
  color: var(--brand-red);
  font-size: 0.84rem;
  font-weight: 900;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 20px 58px 20px 22px;
  color: var(--brand-gray);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 18px;
  height: 18px;
  color: var(--brand-red);
  font-size: 1.4rem;
  line-height: 0.75;
  text-align: center;
  content: "+";
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 53, 43, 0.92), rgba(15, 53, 43, 0.74)),
    url("../images/hero/b3.jpg") center / cover;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 56px;
  align-items: start;
}

.contact-copy h2 {
  margin: 0;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-card {
  display: grid;
  gap: 3px;
  padding: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.contact-card strong {
  color: var(--brand-gray);
}

.contact-card span {
  color: var(--muted);
}

.lead-form {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-header h3 {
  margin: 0;
  color: var(--brand-gray);
  font-size: 1.45rem;
}

.form-header p {
  margin: 8px 0 22px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--brand-gray);
  font-size: 0.9rem;
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfcfc8;
  border-radius: var(--radius-small);
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-red);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(216, 194, 147, 0.22);
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: var(--brand-red);
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  color: var(--brand-red);
  font-size: 0.82rem;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--surface-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 44px;
  padding: 58px 0 34px;
}

.brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  width: fit-content;
  padding: 8px 14px 8px 10px;
  background: #fff;
  border-radius: var(--radius-small);
}

.brand-footer .brand-logo {
  width: 74px;
}

.site-footer p {
  max-width: 440px;
  margin: 18px 0 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-whatsapp {
  color: #fff;
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  color: #fff;
  font-weight: 900;
  background: var(--success);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(31, 141, 85, 0.33);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

@media (max-width: 1100px) {
  .header-grid {
    grid-template-columns: auto auto;
  }

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

  .site-nav {
    position: absolute;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    padding-bottom: 14px;
  }

  .header-phone {
    text-align: left;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-lead {
    max-width: 520px;
  }

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

  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

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

  .brand-logo {
    width: 48px;
    max-height: 48px;
  }

  .header-actions {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding: 86px 0 46px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
  }

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

  .section {
    padding: 68px 0;
  }

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

  .section-heading h2,
  .conversion-band h2,
  .final-cta h2,
  .contact-copy h2 {
    font-size: 1.85rem;
  }

  .split-layout,
  .contact-grid,
  .band-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .band-grid,
  .final-cta-grid {
    align-items: start;
  }

  .pain-list,
  .benefit-grid,
  .service-grid,
  .segment-grid,
  .process-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-grid {
    gap: 34px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 72px;
  }

  .hero-grid {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-lead,
  .lead-form {
    padding: 22px;
  }

  .trust-grid,
  .portfolio-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
}

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