/* =============================================================
   CONTABILITA — Landing Page
   Design system + estilos. CSS puro, sem frameworks.
   Paleta baseada na marca: teal/ciano sobre escuro.
   ============================================================= */

/* ---------- Tokens / variáveis ---------- */
:root {
  /* Cores da marca */
  --teal: #0e8c99;
  --teal-dark: #0a6f7a;
  --teal-light: #17b0c0;
  --teal-050: #e6f6f8;

  /* Neutros */
  --ink: #0d1b1e;      /* texto forte / fundo escuro */
  --ink-800: #16292d;
  --slate: #4a5b60;    /* texto secundário */
  --line: #e4eaec;     /* bordas */
  --tint: #f4f8f9;     /* fundo seção clara */
  --white: #ffffff;

  /* WhatsApp */
  --wa: #25d366;
  --wa-dark: #1ebe5a;

  /* Tipografia */
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Plus Jakarta Sans", var(--font-body);

  /* Layout */
  --maxw: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(13, 27, 30, .06);
  --shadow-md: 0 12px 32px rgba(13, 27, 30, .10);
  --shadow-lg: 0 24px 60px rgba(13, 27, 30, .14);
  --header-h: 74px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; margin: 0; letter-spacing: -.02em; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- Utilidades ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }
.text-accent { color: var(--teal); }

/* ---------- Botões ---------- */
.btn {
  --btn-bg: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 17px 30px; font-size: 1.06rem; }
.btn--block { width: 100%; }

.btn--whatsapp { background: var(--wa); color: #04310f; box-shadow: 0 8px 20px rgba(37, 211, 102, .35); }
.btn--whatsapp:hover { background: var(--wa-dark); box-shadow: 0 12px 26px rgba(37, 211, 102, .45); }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .55); }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.btn--outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn--outline:hover { background: var(--teal); color: #fff; }

.icon { flex-shrink: 0; }

/* =============================================================
   HEADER
   ============================================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  z-index: 1000;
  transition: box-shadow .3s, background .3s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header__brand { display: inline-flex; align-items: center; gap: 8px; }
.header__logo { height: 40px; width: auto; }
.header__badge {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(145deg, var(--teal-light), var(--teal));
  padding: 3px 8px;
  border-radius: 7px;
  line-height: 1;
  box-shadow: 0 3px 8px rgba(14, 140, 153, .35);
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; align-items: center; gap: 26px; }
.nav__link {
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink-800);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--teal);
  transition: width .3s var(--ease);
}
.nav__link:hover { color: var(--teal); }
.nav__link:hover::after { width: 100%; }

/* Hambúrguer */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__toggle span {
  width: 26px; height: 2.5px; border-radius: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 90px;
  background: linear-gradient(160deg, #0d2a2e 0%, #0a3b42 45%, #0e8c99 130%);
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(23, 176, 192, .35), transparent 42%),
    radial-gradient(circle at 12% 90%, rgba(14, 140, 153, .30), transparent 45%);
  pointer-events: none;
}
.hero__inner { position: relative; }
.hero__content { max-width: 760px; }
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b9eef4;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__title { font-size: clamp(2.1rem, 5.2vw, 3.6rem); font-weight: 800; margin-bottom: 20px; }
.hero__title .text-accent { color: #4fe0ec; }
.hero__subtitle { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: #d6ecee; max-width: 640px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 14px 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust strong { font-family: var(--font-head); font-size: 1.5rem; color: #fff; line-height: 1.1; }
.hero__trust span { font-size: .9rem; color: #b8d6d9; }

/* =============================================================
   SEÇÕES GENÉRICAS
   ============================================================= */
.section { padding: 92px 0; }
.section--tint { background: var(--tint); }
.section--dark { background: linear-gradient(165deg, #0d2a2e, #0a3b42); color: #fff; }

.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section__eyebrow--light { color: #6fe3ef; }
.section__title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 800; color: var(--ink); }
.section__title--light { color: #fff; }
.section__lead { margin-top: 16px; color: var(--slate); font-size: 1.1rem; }
.section--dark .section__lead { color: #cfe6e8; }

/* =============================================================
   SOBRE
   ============================================================= */
.about { display: grid; grid-template-columns: 1.4fr 1fr; gap: 54px; align-items: start; }
.about__text p { color: var(--slate); font-size: 1.08rem; }
.about__text strong { color: var(--ink); }
.about__mission { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.about__mission-item {
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.about__mission-item h3 { font-size: 1.05rem; color: var(--teal); margin-bottom: 6px; }
.about__mission-item p { font-size: .96rem; color: var(--slate); margin: 0; }

.about__badges {
  background: linear-gradient(165deg, #0d2a2e, #0e8c99);
  color: #eaf7f9;
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow-md);
}
.about__badges li { display: flex; align-items: center; gap: 16px; font-size: 1rem; line-height: 1.35; }
.about__badge-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  min-width: 58px; height: 58px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
}

/* =============================================================
   CARDS DE SERVIÇOS
   ============================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--teal-050);
  color: var(--teal);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background .3s, color .3s;
}
.card__icon svg { width: 28px; height: 28px; }
.card:hover .card__icon { background: var(--teal); color: #fff; }
.card__title { font-size: 1.18rem; margin-bottom: 10px; }
.card__text { color: var(--slate); font-size: .97rem; flex-grow: 1; margin-bottom: 18px; }
.card__cta {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--teal);
  transition: gap .2s, color .2s;
}
.card__cta:hover { color: var(--teal-dark); }

/* =============================================================
   DIFERENCIAIS
   ============================================================= */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  display: flex;
  gap: 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feature__check {
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: var(--teal-050);
  color: var(--teal);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 700;
}
.feature h3 { font-size: 1.08rem; margin-bottom: 5px; }
.feature p { font-size: .95rem; color: var(--slate); margin: 0; }

/* =============================================================
   COMO FUNCIONA
   ============================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .3s var(--ease), background .3s;
}
.step:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .10); }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, #17b0c0, #0e8c99);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(23, 176, 192, .35);
}
.step__title { font-size: 1.12rem; color: #fff; margin-bottom: 8px; }
.step__text { font-size: .95rem; color: #c6e2e5; margin: 0; }
.steps__cta { text-align: center; margin-top: 46px; }

/* =============================================================
   DEPOIMENTOS
   ============================================================= */
/* Módulo de reputação — aponta para o Perfil do Google (não duplica/inventa avaliações) */
.greviews {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.greviews::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
}
.greviews__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  text-align: left;
}
.greviews__brand-text { display: flex; flex-direction: column; line-height: 1.3; }
.greviews__brand-text strong { font-family: var(--font-head); font-size: 1.12rem; color: var(--ink); }
.greviews__brand-text span { font-size: .88rem; color: var(--slate); }
.greviews__text { color: var(--slate); font-size: 1.05rem; max-width: 560px; margin: 0 auto 28px; }
.greviews__actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.greviews__link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--teal);
  transition: color .2s;
}
.greviews__link:hover { color: var(--teal-dark); }

/* =============================================================
   FAQ
   ============================================================= */
.faq { display: grid; gap: 14px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: var(--teal); }
.faq__question {
  cursor: pointer;
  list-style: none;
  padding: 20px 54px 20px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--ink);
  position: relative;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: "+";
  position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem; font-weight: 400; color: var(--teal);
  transition: transform .3s var(--ease);
}
.faq__item[open] .faq__question::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer { padding: 0 22px 20px; }
.faq__answer p { margin: 0; color: var(--slate); font-size: 1rem; }

/* =============================================================
   CONTATO
   ============================================================= */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: stretch; }
.contact__list { display: grid; gap: 22px; margin-bottom: 28px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--teal-050);
  color: var(--teal);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact__list strong { display: block; font-family: var(--font-head); color: var(--ink); margin-bottom: 2px; }
.contact__list a, .contact__list span { color: var(--slate); }
.contact__list a:hover { color: var(--teal); }
.contact__map {
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.contact__map iframe { width: 100%; height: 100%; min-height: 380px; display: block; }

/* =============================================================
   PÁGINAS LEGAIS (Política de Privacidade / Termos de Uso)
   ============================================================= */
.legal-hero {
  padding: calc(var(--header-h) + 56px) 0 40px;
  background: linear-gradient(160deg, #0d2a2e 0%, #0a3b42 60%, #0e8c99 140%);
  color: #fff;
}
.legal-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #9fe6ee;
  margin-bottom: 10px;
}
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
.legal-hero__meta { margin-top: 14px; color: #bfe0e3; font-size: .95rem; }

.legal { padding: 56px 0 80px; }
.legal__body { max-width: 820px; margin: 0 auto; }
.legal__body h2 {
  font-size: 1.3rem;
  color: var(--ink);
  margin: 38px 0 12px;
  padding-top: 8px;
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 { font-size: 1.05rem; color: var(--teal-dark); margin: 22px 0 8px; }
.legal__body p, .legal__body li { color: var(--slate); font-size: 1.02rem; }
.legal__body ul { list-style: disc; padding-left: 22px; margin: 0 0 1rem; }
.legal__body li { margin-bottom: 8px; }
.legal__body a { color: var(--teal); font-weight: 600; }
.legal__body a:hover { color: var(--teal-dark); text-decoration: underline; }
.legal__body strong { color: var(--ink); }
.legal__note {
  background: var(--teal-050);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 28px 0;
}
.legal__note p { margin: 0; color: var(--ink-800); font-size: .98rem; }
.legal__back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 40px;
  font-family: var(--font-head); font-weight: 700; color: var(--teal);
}
.legal__back:hover { color: var(--teal-dark); }

/* =============================================================
   RODAPÉ
   ============================================================= */
.footer { background: var(--ink); color: #c6d4d6; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 36px;
  padding: 60px 24px 44px;
}
.footer__brand img { height: 42px; width: auto; margin-bottom: 16px; }
.footer__tag { font-size: .95rem; color: #9fb3b6; max-width: 260px; }
.footer h3 { font-size: .95rem; color: #fff; margin-bottom: 16px; letter-spacing: .03em; }
.footer ul { display: grid; gap: 10px; }
.footer a { color: #b6c8ca; font-size: .95rem; transition: color .2s; }
.footer a:hover { color: #4fe0ec; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 20px 0; }
.footer__bottom p { margin: 0; font-size: .88rem; color: #8ba1a4; text-align: center; }

/* =============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================= */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .5);
  z-index: 900;
  transform: translateY(90px);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s, background .2s;
}
.wa-float.is-visible { transform: translateY(0); opacity: 1; }
.wa-float:hover { background: var(--wa-dark); }
.wa-float::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: wa-pulse 2.2s infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .6; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =============================================================
   ANIMAÇÕES DE ENTRADA (scroll reveal)
   ============================================================= */
/* Só escondemos para animar quando o JS está ativo (classe .js no <html>).
   Sem JS / crawlers / navegadores antigos: conteúdo visível por padrão. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }
/* leve escalonamento entre irmãos */
.cards .reveal:nth-child(2), .features .reveal:nth-child(2), .steps .reveal:nth-child(2), .testimonials .reveal:nth-child(2) { transition-delay: .08s; }
.cards .reveal:nth-child(3), .features .reveal:nth-child(3), .steps .reveal:nth-child(3), .testimonials .reveal:nth-child(3) { transition-delay: .16s; }
.cards .reveal:nth-child(4), .features .reveal:nth-child(4), .steps .reveal:nth-child(4) { transition-delay: .24s; }

/* =============================================================
   RESPONSIVO
   ============================================================= */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .about { grid-template-columns: 1fr; gap: 34px; }
  .contact { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }

  /* Menu mobile */
  .nav {
    position: fixed;
    top: var(--header-h); right: 0;
    width: min(320px, 84vw);
    height: calc(100vh - var(--header-h));
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateX(110%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link { display: block; padding: 14px 6px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 18px; }
  .nav__toggle { display: flex; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 66px 0; }
  .hero { padding: calc(var(--header-h) + 48px) 0 66px; }
  .cards, .steps, .features { grid-template-columns: 1fr; }
  .about__mission { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { gap: 18px 28px; }
  .wa-float { width: 56px; height: 56px; right: 16px; bottom: 16px; }
}

/* Acessibilidade: respeitar preferência de menos animação */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
