/* ============================================
   VET MARIANA HELEN · SISTEMA DE DESIGN
   Mobile-first | Brasilidade sofisticada | Conversão
   ============================================ */

/* -------- RESET -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* -------- DESIGN TOKENS -------- */
:root {
  /* Paleta principal */
  --marrom: #6E3D1C;
  --marrom-escuro: #4A2810;
  --oliva: #55692d;
  --oliva-claro: #7a8f4a;
  --dourado: #E3BA84;
  --dourado-claro: #F0D4A8;
  --creme: #F6F1EB;
  --creme-escuro: #EDE3D4;
  --grafite: #4A4A46;
  --branco: #FDFBF7;

  /* Conversão (WhatsApp) */
  --whatsapp: #25D366;
  --whatsapp-escuro: #1ea952;

  /* Tipografia */
  --fonte-titulo: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  --fonte-texto: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --fonte-script: 'Allura', 'Dancing Script', cursive;

  /* Escala (mobile-first) */
  --fs-hero: clamp(2rem, 8vw, 3.5rem);
  --fs-h1: clamp(1.75rem, 6vw, 2.75rem);
  --fs-h2: clamp(1.5rem, 5vw, 2.25rem);
  --fs-h3: clamp(1.2rem, 4vw, 1.5rem);
  --fs-body: clamp(1rem, 2.8vw, 1.05rem);
  --fs-small: 0.875rem;

  /* Espaçamento */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2.5rem;
  --gap-xl: 4rem;

  /* Raio e sombra */
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(74, 40, 16, 0.08);
  --shadow-md: 0 8px 24px rgba(74, 40, 16, 0.12);
  --shadow-lg: 0 16px 40px rgba(74, 40, 16, 0.18);

  /* Container */
  --container: 1140px;
}

/* -------- BASE -------- */
body {
  font-family: var(--fonte-texto);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--grafite);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--fonte-titulo);
  font-weight: 400;
  line-height: 1.15;
  color: var(--marrom-escuro);
  letter-spacing: -0.01em;
}

.script {
  font-family: var(--fonte-script);
  color: var(--oliva);
  font-size: 1.4em;
  line-height: 1;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: var(--gap-xl) 0;
  position: relative;
}

/* Padrão de azulejo sutil (SVG inline em CSS): só em seções específicas */
.textura-azulejo {
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><g fill='none' stroke='%236E3D1C' stroke-width='0.5' opacity='0.08'><path d='M30 0 L60 30 L30 60 L0 30 Z'/><circle cx='30' cy='30' r='8'/></g></svg>");
  background-size: 60px 60px;
}

/* -------- HEADER / NAV -------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(110, 61, 28, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  font-family: var(--fonte-titulo);
  font-size: 1.35rem;
  color: var(--marrom);
  line-height: 1;
}
.logo small {
  display: block;
  font-family: var(--fonte-texto);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oliva);
  margin-top: 3px;
}

.nav-links { display: none; }

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--whatsapp);
  color: white;
  padding: 0.55rem 0.95rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-whatsapp:hover { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(37, 211, 102, 0.4); }
.nav-whatsapp svg { width: 16px; height: 16px; fill: white; }

/* -------- HERO -------- */
.hero {
  padding: 1.5rem 0 2rem;
  background: linear-gradient(180deg, var(--creme) 0%, var(--creme-escuro) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--dourado-claro) 0%, transparent 70%);
  opacity: 0.5;
  z-index: 0;
}

.hero-grid {
  display: grid;
  gap: var(--gap-md);
  position: relative;
  z-index: 1;
}

.hero-foto {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  order: -1;
}
.hero-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Moldura decorativa */
.hero-foto::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1.5px solid rgba(253, 251, 247, 0.35);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}

.hero-conteudo {
  text-align: center;
}
.hero-conteudo .selo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--branco);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--oliva);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.selo::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--oliva); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: var(--fs-hero);
  margin-bottom: 1rem;
}
.hero h1 .destaque-bold {
  font-family: var(--fonte-titulo);
  font-weight: 400;
  color: var(--marrom);
  display: block;
  line-height: 1.05;
  margin-top: 0.2rem;
  font-style: italic;
  position: relative;
}
.hero h1 .destaque-bold::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--dourado);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

.hero-lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--grafite);
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* -------- BOTÕES -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-align: center;
  min-height: 52px;
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-escuro);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}
.btn-whatsapp svg { width: 20px; height: 20px; fill: white; }

.btn-secundario {
  background: transparent;
  color: var(--marrom);
  border: 1.5px solid var(--marrom);
}
.btn-secundario:hover { background: var(--marrom); color: white; }

/* -------- PROVA RÁPIDA (badges sob hero) -------- */
.prova-rapida {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(110, 61, 28, 0.12);
}
.prova-rapida .item {
  text-align: center;
}
.prova-rapida .num {
  font-family: var(--fonte-titulo);
  font-size: 1.6rem;
  color: var(--marrom);
  display: block;
  line-height: 1;
}
.prova-rapida .desc {
  font-size: 0.72rem;
  color: var(--grafite);
  margin-top: 4px;
  line-height: 1.3;
}

/* -------- SEÇÕES -------- */
.secao-titulo {
  text-align: center;
  margin-bottom: var(--gap-lg);
}
.secao-titulo .kicker {
  font-family: var(--fonte-script);
  color: var(--oliva);
  font-size: 1.8rem;
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.secao-titulo h2 {
  font-size: var(--fs-h1);
}
.secao-titulo p {
  max-width: 55ch;
  margin: 0.85rem auto 0;
  color: var(--grafite);
}

/* -------- COMO FUNCIONA (problemas/solução) -------- */
.como-funciona {
  background: var(--branco);
}
.passos {
  display: grid;
  gap: var(--gap-md);
}
.passo {
  background: var(--creme);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--dourado);
  position: relative;
}
.passo-num {
  font-family: var(--fonte-titulo);
  font-size: 2.5rem;
  color: var(--dourado);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.passo h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

/* -------- BAIRROS (seção interativa, destaque do site) -------- */
.bairros {
  background: linear-gradient(180deg, var(--marrom) 0%, var(--marrom-escuro) 100%);
  color: var(--creme);
}
.bairros .secao-titulo h2 { color: var(--creme); }
.bairros .secao-titulo .kicker { color: var(--dourado); }
.bairros .secao-titulo p { color: var(--dourado-claro); }

.bairros-grupo {
  margin-bottom: var(--gap-md);
}
.bairros-grupo h3 {
  color: var(--dourado);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--fonte-texto);
  font-weight: 600;
}
.bairros-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.bairro-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(253, 251, 247, 0.08);
  color: var(--creme);
  padding: 0.95rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(227, 186, 132, 0.25);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
  text-align: center;
  min-height: 56px;
}
.bairro-btn:hover, .bairro-btn:focus {
  background: var(--dourado);
  color: var(--marrom-escuro);
  border-color: var(--dourado);
  transform: translateY(-2px);
}
.bairro-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.bairros-nota {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--dourado-claro);
  font-style: italic;
}

/* -------- GALERIA -------- */
.galeria {
  background: var(--creme);
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.galeria-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--creme-escuro);
  position: relative;
}
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.galeria-item:hover img { transform: scale(1.05); }
.galeria-item.destaque {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

/* -------- DEPOIMENTOS -------- */
.depoimentos {
  background: var(--branco);
  position: relative;
}
.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--creme);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  max-width: fit-content;
  margin: 0 auto var(--gap-md);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  color: var(--grafite);
}
.google-badge strong { color: var(--marrom); font-weight: 600; }
.estrelas {
  color: #FFC107;
  letter-spacing: 2px;
}

.depoimentos-grid {
  display: grid;
  gap: var(--gap-sm);
}
.depoimento-card {
  background: var(--creme);
  padding: 1.5rem;
  border-radius: var(--radius);
  position: relative;
  border-top: 3px solid var(--oliva);
}
.depoimento-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 18px;
  font-family: var(--fonte-titulo);
  font-size: 4rem;
  color: var(--dourado);
  line-height: 1;
}
.depoimento-texto {
  font-style: italic;
  color: var(--grafite);
  margin-bottom: 1rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.depoimento-autor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(110, 61, 28, 0.1);
}
.depoimento-autor strong {
  color: var(--marrom);
  font-weight: 600;
  font-size: 0.95rem;
}
.depoimento-autor .estrelas { font-size: 0.85rem; }

/* -------- SOBRE -------- */
.sobre {
  background: var(--creme-escuro);
  position: relative;
}
.sobre-grid {
  display: grid;
  gap: var(--gap-md);
}
.sobre-foto {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.sobre-foto img { width: 100%; height: 100%; object-fit: cover; }

.sobre-texto h2 { margin-bottom: 1rem; }
.sobre-texto p { margin-bottom: 1rem; }
.sobre-creds {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(110, 61, 28, 0.15);
}
.sobre-creds .cred {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.sobre-creds .cred svg { width: 18px; height: 18px; fill: var(--oliva); flex-shrink: 0; }

/* -------- CTA FINAL -------- */
.cta-final {
  background: linear-gradient(135deg, var(--oliva) 0%, #3f4f22 100%);
  color: var(--creme);
  text-align: center;
}
.cta-final h2 { color: var(--creme); margin-bottom: 1rem; }
.cta-final p { color: var(--dourado-claro); margin-bottom: 1.75rem; max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-final .btn-whatsapp { font-size: 1.05rem; padding: 1.05rem 2rem; }

/* -------- CTA INTERMEDIÁRIO (quebra de seção) -------- */
.cta-quebra {
  padding: 2rem 0;
  background: var(--dourado);
  color: var(--marrom-escuro);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-quebra::before, .cta-quebra::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.cta-quebra::before { top: -75px; left: -50px; }
.cta-quebra::after { bottom: -75px; right: -50px; }
.cta-quebra-conteudo {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.cta-quebra h3 {
  font-family: var(--fonte-titulo);
  font-size: clamp(1.3rem, 4.5vw, 1.7rem);
  color: var(--marrom-escuro);
  line-height: 1.2;
  max-width: 24ch;
}
.cta-quebra .script-inline {
  font-family: var(--fonte-script);
  color: var(--oliva);
  font-size: 1.6rem;
  line-height: 0.9;
}
.cta-quebra .btn-whatsapp {
  box-shadow: 0 4px 14px rgba(74, 40, 16, 0.25);
}
@media (min-width: 700px) {
  .cta-quebra-conteudo { flex-direction: row; justify-content: center; gap: 1.5rem; }
  .cta-quebra h3 { max-width: none; text-align: left; }
}

/* -------- WHATSAPP FLUTUANTE -------- */
.whatsapp-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 99;
  background: var(--whatsapp);
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
  animation: floatPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.75); }
}

/* -------- FOOTER -------- */
.footer {
  background: var(--marrom-escuro);
  color: var(--dourado-claro);
  padding: 2.5rem 0 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}
.footer-logo {
  font-family: var(--fonte-titulo);
  font-size: 1.4rem;
  color: var(--dourado);
  margin-bottom: 0.75rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem 0;
}
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--dourado); }
.footer-sociais {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem 0;
}
.footer-sociais a {
  width: 38px; height: 38px;
  border: 1px solid rgba(227, 186, 132, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.footer-sociais a:hover { background: var(--dourado); border-color: var(--dourado); }
.footer-sociais svg { width: 16px; height: 16px; fill: var(--dourado); }
.footer-sociais a:hover svg { fill: var(--marrom-escuro); }
.footer-creditos {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(227, 186, 132, 0.15);
  font-size: 0.75rem;
  opacity: 0.7;
}

/* -------- BREADCRUMB (páginas internas) -------- */
.breadcrumb {
  background: var(--creme);
  padding: 0.85rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(110, 61, 28, 0.08);
}
.breadcrumb a { color: var(--oliva); }
.breadcrumb .sep { margin: 0 0.5rem; color: var(--grafite); opacity: 0.5; }

/* -------- PÁGINA INTERNA (serviço) -------- */
.servico-hero {
  background: linear-gradient(180deg, var(--creme-escuro) 0%, var(--creme) 100%);
  padding: 2rem 0;
}
.servico-hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: 0.75rem;
}
.servico-hero .lead {
  font-size: 1.05rem;
  color: var(--grafite);
  max-width: 55ch;
}

.servico-conteudo {
  background: var(--branco);
}
.servico-conteudo p {
  margin-bottom: 1rem;
  max-width: 65ch;
}
.servico-conteudo h2 {
  font-size: var(--fs-h2);
  margin: 2rem 0 1rem;
}
.servico-conteudo ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.25rem;
}
.servico-conteudo li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  max-width: 65ch;
}
.servico-conteudo li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px; height: 8px;
  background: var(--dourado);
  border-radius: 50%;
}

.servico-imagem {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.servico-imagem img { width: 100%; height: 100%; object-fit: cover; }

/* -------- RESPONSIVO · TABLET -------- */
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; }
  .hero-ctas .btn { flex: 1; }
  .bairros-grid { grid-template-columns: repeat(3, 1fr); }
  .galeria-grid { grid-template-columns: repeat(3, 1fr); }
  .passos { grid-template-columns: repeat(2, 1fr); }
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
  .prova-rapida { gap: 1rem; }
  .prova-rapida .desc { font-size: 0.8rem; }
}

/* -------- RESPONSIVO · DESKTOP -------- */
@media (min-width: 900px) {
  section { padding: 5rem 0; }

  .nav-links {
    display: flex;
    gap: 2rem;
    font-size: 0.92rem;
    font-weight: 500;
  }
  .nav-links a {
    color: var(--grafite);
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a:hover { color: var(--marrom); }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--oliva);
    transition: width 0.25s;
  }
  .nav-links a:hover::after { width: 100%; }

  .hero { padding: 3rem 0 4rem; }
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: var(--gap-xl);
  }
  .hero-foto { order: 2; aspect-ratio: 4 / 5; }
  .hero-conteudo { text-align: left; }
  .hero-lead { margin-left: 0; margin-right: 0; }
  .hero h1 .destaque-bold::after { margin-left: 0; margin-right: 0; }

  .passos { grid-template-columns: repeat(4, 1fr); }
  .galeria-grid { grid-template-columns: repeat(4, 1fr); }
  .galeria-item.destaque { grid-column: span 2; }
  .depoimentos-grid { grid-template-columns: repeat(3, 1fr); }
  .bairros-grid { grid-template-columns: repeat(6, 1fr); }

  .sobre-grid {
    grid-template-columns: 1fr 1.3fr;
    align-items: center;
    gap: var(--gap-xl);
  }

  .whatsapp-float {
    width: 64px; height: 64px;
    bottom: 28px; right: 28px;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--gap-lg);
    text-align: left;
    margin-bottom: 1.5rem;
  }
}

/* -------- ACESSIBILIDADE -------- */
:focus-visible {
  outline: 3px solid var(--oliva);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
