/* ============================================================
   Carnavalli Advogados — styles.css
   Mobile first (base 360px) → 600px → 880px → 1140px
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --azul: #00012C;
  --azul-2: #05061f;
  --ouro-grad: linear-gradient(160deg, #e7c979, #c9a24a 55%, #9a7526);
  --ouro: #c9a24a;
  --ouro-claro: #e7c979;
  --ouro-escuro: #8a6220;
  --marfim: #f3ecdb;
  --papel: #fbf9f4;
  --areia: #f3efe4;
  --texto: #23201a;
  --texto-2: #57503f;
  --texto-3: #6d6552;
  --borda: #e4dcc8;
  --borda-card: #e8e0cd;
  --raio: 2px;
  --font-display: 'Cinzel', Georgia, serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Libre Franklin', system-ui, -apple-system, sans-serif;
}

/* ---------- 2. Base ---------- */
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--texto);
  background: var(--papel);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  color: inherit;
  font-family: var(--font-display);
  font-weight: 600;
}

p { margin: 0; text-wrap: pretty; }

h1, h2 { text-wrap: balance; }

ul, ol { margin: 0; padding: 0; list-style: none; }

figure { margin: 0; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

.container { max-width: 1200px; margin-inline: auto; padding-inline: 22px; }

.container--narrow { max-width: 840px; }

/* ---------- 3. Acessibilidade ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 130;
  background: var(--azul);
  color: var(--marfim);
  padding: 12px 18px;
  border-radius: var(--raio);
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- 4. Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: var(--raio);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, filter .2s ease;
}

.btn--gold {
  background: var(--ouro-grad);
  color: var(--azul);
  text-transform: uppercase;
}
.btn--gold:hover { filter: brightness(1.07); color: var(--azul); }

.btn--line-light {
  border: 1px solid rgba(201, 162, 74, 0.5);
  color: #e6ddc4;
}
.btn--line-light:hover { background: rgba(201, 162, 74, 0.12); color: #e6ddc4; }

.btn--line-dark {
  border: 1px solid var(--ouro);
  color: var(--ouro-escuro);
}
.btn--line-dark:hover { background: rgba(201, 162, 74, 0.14); color: var(--ouro-escuro); }

.btn--fit { min-height: 50px; padding-inline: 24px; align-self: flex-start; margin-top: 24px; }

.btn--block { width: 100%; }

/* ---------- 5. Cabeçalho ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 1, 44, 0.97);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(201, 162, 74, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 18px;
  transition: padding-block .25s ease;
}

.site-header.is-scrolled .header-inner { padding-block: 10px; }

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  min-width: 0;
}

.brand__emblem {
  height: 48px;
  width: auto;
  flex: none;
  transition: height .25s ease;
}

.site-header.is-scrolled .brand__emblem { height: 40px; }

.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.17em;
  line-height: 1.18;
  color: var(--marfim);
}

/* Navegação desktop (≥880px) */
.nav-desktop { display: none; }

/* Hamburguer */
.nav-toggle {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: none;
  border: 1px solid rgba(201, 162, 74, 0.45);
  border-radius: var(--raio);
  background: transparent;
}
.nav-toggle:hover { background: rgba(201, 162, 74, 0.12); }

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 2.5px auto;
  background: var(--ouro);
  transition: transform .22s ease, opacity .22s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Painel mobile */
.nav-mobile {
  border-top: 1px solid rgba(201, 162, 74, 0.22);
  padding: 8px 22px 22px;
}
.nav-mobile[hidden] { display: none; }

.nav-mobile a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 2px;
  font-size: 17px;
  letter-spacing: 0.03em;
  color: #e6e1d3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav-mobile a:hover { color: var(--ouro-claro); }

.nav-mobile__cta {
  margin-top: 18px;
  justify-content: center;
  min-height: 58px !important;
  background: var(--ouro-grad);
  color: var(--azul) !important;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 0 !important;
  border-radius: var(--raio);
}
.nav-mobile__cta:hover { filter: brightness(1.07); color: var(--azul) !important; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  background: var(--azul);
  color: var(--marfim);
  min-height: min(92vh, 840px);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 162, 74, 0.14) 0%, rgba(0, 1, 44, 0) 72%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  padding: clamp(44px, 7vh, 84px) 22px 46px;
  z-index: 1;
}

.hero__content { max-width: min(100%, 32rem); }

.hero__seal {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid rgba(201, 162, 74, 0.4);
  border-radius: 99px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ouro);
}

.hero h1 {
  margin: 20px 0 0;
  font-size: clamp(29px, 7.6vw, 54px);
  line-height: 1.16;
  letter-spacing: 0.012em;
  color: #f6f1e4;
}

.hero__lead {
  margin-top: 20px;
  max-width: 38rem;
  font-size: clamp(15px, 4.1vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: #cdc7b6;
}

.hero__slogan {
  margin-top: 22px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  color: #b3a484;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 30px;
  max-width: 26rem;
}

/* Indicadores */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: 1px;
  background: rgba(201, 162, 74, 0.28);
  margin-top: 42px;
}

.hero__stats li {
  background: var(--azul);
  padding: 16px 14px;
  min-width: 0;
}

.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.1;
  color: var(--ouro);
}

.hero__stat-label {
  display: block;
  margin-top: 6px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.55;
  color: #a49b83;
}

/* Foto do hero — mobile: bloco em fluxo, abaixo do conteúdo */
.hero__photo {
  position: relative;
  height: 76vw;
  max-height: 440px;
  margin-top: 36px;
  overflow: hidden;
}

.hero__photo-inner {
  position: absolute;
  inset: 0;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(0.9) contrast(1.05) brightness(1.06);
  -webkit-mask-image: radial-gradient(ellipse 88% 92% at 50% 62%, #000 0%, #000 44%, rgba(0, 0, 0, 0.5) 74%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(ellipse 88% 92% at 50% 62%, #000 0%, #000 44%, rgba(0, 0, 0, 0.5) 74%, rgba(0, 0, 0, 0) 100%);
}

/* Véus — dissolvem a foto no azul pelas bordas */
.hero__veil { position: absolute; inset: 0; pointer-events: none; }

.hero__veil--1 {
  background: linear-gradient(90deg, #00012C 0%, rgba(0, 1, 44, 0.72) 5%, rgba(0, 1, 44, 0.22) 13%, rgba(0, 1, 44, 0) 26%);
}
.hero__veil--2 {
  background: linear-gradient(180deg, #00012C 0%, rgba(0, 1, 44, 0.6) 5%, rgba(0, 1, 44, 0) 14%, rgba(0, 1, 44, 0) 88%, rgba(0, 1, 44, 0.28) 100%);
}
.hero__veil--3 {
  background: linear-gradient(270deg, #00012C 0%, rgba(0, 1, 44, 0.3) 3%, rgba(0, 1, 44, 0) 10%);
}

/* ---------- 7. Faixa de credibilidade ---------- */
.band { background: var(--areia); border-bottom: 1px solid var(--borda); }

.band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding-block: 16px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texto-3);
}

.band__dot { color: var(--ouro); }

/* ---------- 8. Seções genéricas ---------- */
.sec { padding-block: 56px; }

.sec--navy { background: var(--azul); color: #eae5d6; }
.sec--sand { background: var(--areia); border-top: 1px solid var(--borda); }

.overline {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--texto-3);
}

.overline--gold { color: var(--ouro); }

.sec h2 {
  margin: 12px 0 0;
  font-size: clamp(23px, 5.6vw, 36px);
  line-height: 1.24;
  color: var(--azul);
}

.sec--navy h2 { color: #f6f1e4; }

.sec__lead {
  margin-top: 14px;
  max-width: 36rem;
  font-size: 15px;
  line-height: 1.72;
  color: var(--texto-2);
}

.sec--navy .sec__lead { color: #c6bfae; }

/* Grade de duas colunas (escritório e contato) */
.grid-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 34px;
  align-items: start;
}

/* ---------- 9. Cartões ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 14px;
  margin-top: 28px;
}

.cards-grid--etapas {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid var(--borda-card);
  border-top: 2px solid var(--ouro);
  border-radius: var(--raio);
  padding: 22px 20px 24px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.card:hover { border-color: var(--ouro); box-shadow: 0 10px 30px -20px rgba(0, 1, 44, 0.5); }

.card h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.35;
  color: var(--azul);
}

.card > p { margin-top: 11px; font-size: 13.8px; line-height: 1.68; color: var(--texto-2); }

.card__tag {
  margin-top: 14px !important;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ouro-escuro);
}

/* Etapas do processo */
.card--etapa .card__num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ouro);
  margin: 0;
}

.card--etapa h3 { margin-top: 10px; font-size: 15.5px; }

/* ---------- 10. O escritório (azul) ---------- */
.sec--navy .grid-2col { padding-block: 0; }

.sec--navy .col-text > p { margin-top: 16px; font-size: 15px; line-height: 1.75; color: #c6bfae; }
.sec--navy .col-text > p + p { margin-top: 14px; }

.col-photo { display: flex; flex-direction: column; gap: 12px; }

/* Banda fotográfica P&B */
.band-photo {
  position: relative;
  border-radius: var(--raio);
  overflow: hidden;
}

.band-photo--pb {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(201, 162, 74, 0.28);
  background: var(--azul-2);
}

.band-photo--pb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 6%;
  filter: contrast(1.06);
}

.band-photo__veil { position: absolute; inset: 0; pointer-events: none; }

.band-photo--pb .band-photo__veil {
  background: linear-gradient(180deg, rgba(0, 1, 44, 0.32) 0%, rgba(0, 1, 44, 0) 34%, rgba(0, 1, 44, 0.12) 70%, rgba(0, 1, 44, 0.72) 100%);
}

.band-photo figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
}

.band-photo__label {
  display: block;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ouro);
}

.band-photo--pb .band-photo__text { color: #e6e1d3; }

.band-photo__text {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.5;
}

/* Diferenciais */
.diffs { display: flex; flex-direction: column; gap: 12px; }

.diff {
  display: flex;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(201, 162, 74, 0.25);
  border-radius: var(--raio);
  background: rgba(255, 255, 255, 0.02);
}

.diff__mark {
  flex: none;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  background: var(--ouro);
  transform: rotate(45deg);
}

.diff__title { font-size: 14px; font-weight: 500; letter-spacing: 0.03em; color: #f0ead9; }

.diff__text { margin-top: 5px; font-size: 13px; line-height: 1.62; color: #aca492; }

/* ---------- 11. FAQ ---------- */
.faq { border-top: 1px solid var(--borda); margin-top: 26px; }

.faq__item { border-bottom: 1px solid var(--borda); }

.faq__q { margin: 0; }

.faq__q button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 58px;
  padding: 14px 2px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--azul);
  text-align: left;
}
.faq__q button:hover span:first-child { color: var(--ouro-escuro); }

.faq__icon {
  flex: none;
  font-size: 21px;
  font-weight: 300;
  line-height: 1;
  color: var(--ouro);
}

.faq__a[hidden] { display: none; }

.faq__a p {
  padding: 0 2px 20px;
  font-size: 14.2px;
  line-height: 1.75;
  color: var(--texto-2);
}

.faq__a.is-open { animation: faq-open .24s ease both; }

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

/* ---------- 12. Contato ---------- */
.contact { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }

.contact__label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--texto-3);
}

.contact__value { margin-top: 6px; font-size: 15px; line-height: 1.6; }
.contact__value--static { color: #3a352a; font-size: 14.5px; }

/* Banda fotográfica do contato (areia) */
.band-photo--sand {
  aspect-ratio: 3 / 2;
  margin-top: 30px;
  border: 1px solid var(--borda);
  background: #efe9dc;
}

.band-photo--sand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  : 50% 24%;
}

.band-photo--sand .band-photo__veil {
  background: linear-gradient(180deg, rgba(251, 249, 244, 0) 46%, rgba(243, 239, 228, 0.82) 88%, #f3efe4 100%);
}

.band-photo--sand .band-photo__label { color: var(--ouro-escuro); }
.band-photo--sand .band-photo__text { color: #3a352a; font-size: 13.5px; }

/* Formulário */
.form {
  background: #fff;
  border: 1px solid var(--borda);
  border-top: 2px solid var(--ouro);
  border-radius: var(--raio);
  padding: 26px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__title {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.05em;
  color: var(--azul);
  margin-bottom: 2px;
}

.field { display: flex; flex-direction: column; gap: 7px; }

.field__label {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texto-3);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  background: var(--papel);
  border: 1px solid #ddd4bf;
  border-radius: var(--raio);
  font-size: 15px;
  transition: border-color .2s ease;
}

.field textarea {
  padding-block: 12px;
  line-height: 1.6;
  resize: vertical;
  min-height: 110px;
}

.field select { padding-right: 30px; }

.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--ouro); outline: none; }

/* Honeypot — invisível para humanos e para leitores de tela */
.field--hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__note {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--texto-3);
}

.form__status { font-size: 14px; font-weight: 500; color: var(--azul); }

.form__status.is-error { color: #8a2020; }

.form.is-sent .btn { pointer-events: none; }

/* ---------- 13. Rodapé ---------- */
.site-footer { background: var(--azul); color: #a49b83; }

.site-footer .container { padding-block: 40px 30px; }

.site-footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }

.site-footer__brand img { height: 34px; width: auto; }

.site-footer__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  line-height: 1.2;
  color: var(--marfim);
}

.site-footer__city {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #8a8069;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 13.5px;
}

.site-footer__nav a { color: #c6bfae; }
.site-footer__nav a:hover { color: var(--ouro-claro); }

.site-footer__contact {
  max-width: 20rem;
  font-size: 13px;
  line-height: 1.7;
  color: #a49b83;
}

.site-footer__contact a { color: #c6bfae; }
.site-footer__contact a:hover { color: var(--ouro-claro); }

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 162, 74, 0.2);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #7d7461;
}

/* ---------- 14. WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 110;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 20px;
  background: var(--azul);
  border: 1px solid var(--ouro);
  border-radius: 99px;
  color: var(--ouro-claro);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 34px -14px rgba(0, 1, 44, 0.7);
  transition: background-color .2s ease;
}
.wa-float:hover { background: #0a0d3a; color: var(--ouro-claro); }

/* ============================================================
   MEDIA QUERIES (somente min-width)
   ============================================================ */

/* ---------- ≥600px ---------- */
@media (min-width: 600px) {
  .hero__ctas { flex-direction: row; }
  .hero__ctas .btn { flex: 1; }
}

/* ---------- ≥880px ---------- */
@media (min-width: 880px) {
  html { scroll-padding-top: 96px; }
  .sec { padding-block: 88px; }

  /* Navegação desktop */
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }

  .nav-desktop { display: flex; align-items: center; gap: 6px; }
  .nav-desktop a {
    padding: 14px 14px;
    font-size: 15px;
    letter-spacing: 0.05em;
    color: #e2ddce;
  }
  .nav-desktop a:hover { color: var(--ouro-claro); }
  .nav-desktop__cta {
    margin-left: 10px;
    padding: 15px 22px !important;
    border: 1px solid rgba(201, 162, 74, 0.55);
    border-radius: var(--raio);
    font-size: 14.5px !important;
    letter-spacing: 0.08em !important;
    color: var(--ouro-claro);
  }
  .nav-desktop__cta:hover { background: rgba(201, 162, 74, 0.14); color: var(--ouro-claro); }

  /* Hero — foto em camada absoluta à direita */
  .hero__inner { padding: clamp(44px, 7vh, 84px) 22px 58px; }

  .hero__photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(48%, 600px);
    margin: 0;
    height: auto;
    max-height: none;
    overflow: visible;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
  }

  .hero__photo-inner {
    position: relative;
    display: inline-flex;
    max-width: 100%;
    max-height: 100%;
  }

  .hero__photo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: initial;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero__stats { max-width: none; }

  /* Texto do escritório em duas colunas iguais na banda P&B */
  .col-text { max-width: 38rem; }
}

/* ---------- ≥1140px ---------- */
@media (min-width: 1140px) {
  .band__inner { gap: 10px 26px; }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
