/* ============================================================
   MECÂNICA SAROBA — style.css
   Mobile-first. Breakpoint principal: 768px.
   ============================================================ */

/* ── VARIÁVEIS ─────────────────────────────────────────────── */
:root {
  --verde-escuro: #1A5C2A;
  --verde-medio: #2E7D32;
  --verde-neon: #4CAF50;
  --verde-claro: #81C784;
  --preto: #111111;
  --carvao: #1E1E1E;
  --cinza-escuro: #2D2D2D;
  --cinza-medio: #555555;
  --cinza-claro: #F4F4F4;
  --branco: #FFFFFF;
  --verde-whatsapp: #25D366;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 10px;
  --transition: 0.25s ease;
  --max-w: 1200px;
  --section-pad: 72px 20px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--preto);
  background: var(--branco);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(76,175,80,0.2);
  text-rendering: optimizeLegibility;
}
img, svg, iframe { max-width: 100%; }
/* Alvos de toque acessíveis: links/botões com área mínima confortável */
a, button { touch-action: manipulation; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }

/* ── UTILITÁRIOS ────────────────────────────────────────────── */
.text-center { text-align: center; }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: var(--section-pad); }

.label-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(76,175,80,0.15);
  color: var(--verde-neon);
  border: 1px solid rgba(76,175,80,0.35);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.label-verde { color: var(--verde-medio); background: rgba(46,125,50,0.1); border-color: rgba(46,125,50,0.3); }

.section-subtitle {
  font-size: 16px;
  color: var(--cinza-medio);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ── BOTÕES ─────────────────────────────────────────────────── */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--verde-whatsapp);
  color: var(--branco);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-1px); }
.btn-whatsapp:active { transform: translateY(0); }

.btn-sm  { font-size: 14px; padding: 9px 18px; }
.btn-md  { font-size: 15px; padding: 12px 22px; }
.btn-lg  { font-size: 16px; padding: 15px 28px; }
.btn-xl  { font-size: 18px; padding: 18px 36px; border-radius: 10px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--branco);
  color: var(--branco);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--branco); color: var(--carvao); }

.btn-branco {
  display: inline-block;
  background: var(--branco);
  color: var(--verde-escuro);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
}
.btn-branco:hover { background: var(--cinza-claro); transform: translateY(-1px); }

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #ddd;
  color: var(--cinza-escuro);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.btn-google:hover { border-color: #aaa; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

/* ── ANIMAÇÕES ──────────────────────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--carvao);
  transform: translateY(-100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#navbar.visible {
  transform: translateY(0);
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--branco);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.navbar-logo svg { color: var(--verde-neon); }

.navbar-tel {
  margin-left: auto;
  color: var(--cinza-claro);
  font-size: 14px;
  font-weight: 500;
  display: none;
}

@media (min-width: 768px) {
  .navbar-tel { display: block; }
}

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
  background: var(--carvao);
  padding-top: 60px;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 20px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-content { max-width: 620px; }

#hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 62px);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 17px;
  color: #b0b0b0;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-local { display: inline-block; }

.hero-horario {
  margin-top: 14px;
  font-size: 13px;
  color: var(--cinza-medio);
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(76,175,80,0.2), 0 8px 32px rgba(0,0,0,0.5);
  background: var(--verde-escuro);
  height: 320px;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-wrap.img-placeholder { min-height: 320px; }

.hero-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 24px 16px 14px;
}
.hero-img-overlay span {
  color: var(--branco);
  font-size: 13px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    padding: 80px 20px 64px;
    gap: 64px;
  }
  .hero-content { flex: 1; }
  .hero-image { flex: 0 0 420px; }
  .hero-img-wrap { height: 520px; }
}

/* ── CREDIBILIDADE ──────────────────────────────────────────── */
#credibilidade {
  background: var(--verde-escuro);
  padding: 0;
}

.credibilidade-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.cred-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--branco);
  line-height: 1.05;
}
.cred-label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* Item do meio: "Especializada em Confiança" como frase equilibrada,
   sem a primeira palavra dominar a segunda linha. */
.cred-item--phrase .cred-number { font-size: 24px; }

.cred-divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

@media (min-width: 768px) {
  .credibilidade-inner { flex-direction: row; justify-content: center; gap: 0; }
  .cred-item { flex: 1; padding: 0 32px; }
  .cred-divider { width: 1px; height: 64px; }
}

/* ── PROMESSA ───────────────────────────────────────────────── */
#promessa { background: var(--branco); }

.promessa-inner {
  text-align: center;
  max-width: 800px;
}

#promessa h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--preto);
  line-height: 1.12;
  margin-bottom: 20px;
}

.promessa-texto {
  font-size: 16px;
  color: var(--cinza-medio);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.promessa-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.promessa-card {
  background: var(--cinza-claro);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--verde-neon);
}

.promessa-icon {
  color: var(--verde-medio);
  margin-bottom: 14px;
}

.promessa-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 8px;
}

.promessa-card p {
  font-size: 15px;
  color: var(--cinza-medio);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .promessa-inner { text-align: center; max-width: 800px; }
  .promessa-cards { flex-direction: row; }
  .promessa-card { flex: 1; }
}

/* ── SERVIÇOS ───────────────────────────────────────────────── */
#servicos { background: var(--cinza-claro); }

#servicos h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 12px;
}

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.servico-card {
  background: var(--branco);
  border-left: 4px solid var(--verde-neon);
  border-radius: var(--radius);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.servico-card svg { color: var(--verde-medio); }
.servico-card span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--preto);
  line-height: 1.2;
}

.servicos-cta { padding-top: 8px; }

@media (min-width: 768px) {
  .servicos-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── SOBRE ──────────────────────────────────────────────────── */
#sobre { background: var(--carvao); }

.sobre-inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  align-items: center;
}

.sobre-image {
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--verde-escuro);
  height: 360px;
}
.sobre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sobre-image.img-placeholder { min-height: 320px; }

.sobre-content { color: var(--branco); }

.sobre-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 8px;
}

.sobre-sub {
  font-size: 15px;
  color: var(--verde-neon);
  font-weight: 500;
  margin-bottom: 20px;
}

.sobre-texto {
  font-size: 16px;
  color: #b0b0b0;
  line-height: 1.75;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .sobre-inner {
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
  }
  .sobre-image { flex: 0 0 380px; height: 460px; }
  .sobre-content { flex: 1; }
}

/* ── DEPOIMENTOS ────────────────────────────────────────────── */
#depoimentos { background: var(--branco); }

#depoimentos h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 10px;
}

.depoimentos-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.depoimento-card {
  background: var(--cinza-claro);
  border-radius: var(--radius);
  padding: 32px 28px 24px;
  position: relative;
}

.depoimento-aspas {
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 56px;
  font-family: Georgia, serif;
  color: var(--verde-neon);
  line-height: 1;
  opacity: 0.6;
}

.depoimento-card p {
  font-size: 15px;
  color: var(--cinza-escuro);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 16px;
}

.depoimento-card cite {
  font-size: 13px;
  font-weight: 600;
  color: var(--verde-medio);
  font-style: normal;
}

.depoimentos-google { margin-top: 0; }

@media (min-width: 768px) {
  .depoimentos-grid { flex-direction: row; }
  .depoimento-card { flex: 1; }
}

/* ── URGÊNCIA ───────────────────────────────────────────────── */
#urgencia { background: var(--verde-escuro); }

.urgencia-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
  text-align: center;
}

#urgencia h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 16px;
}

#urgencia p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* ── INFORMAÇÕES ────────────────────────────────────────────── */
#info { background: var(--cinza-claro); }

.info-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-col { display: flex; flex-direction: column; gap: 14px; }

.info-icon {
  width: 52px;
  height: 52px;
  background: var(--branco);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde-medio);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.info-icon-green { background: var(--verde-whatsapp); }

.info-col h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--preto);
}

.horario-table td {
  font-size: 14px;
  color: var(--cinza-medio);
  padding: 2px 16px 2px 0;
}
.horario-table td:first-child { font-weight: 500; color: var(--preto); }

.info-col address {
  font-size: 14px;
  color: var(--cinza-medio);
  line-height: 1.7;
}

.link-mapa {
  font-size: 14px;
  font-weight: 600;
  color: var(--verde-medio);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-mapa:hover { color: var(--verde-escuro); }

.contato-lista li { margin-bottom: 6px; }
.contato-lista a {
  font-size: 14px;
  color: var(--cinza-medio);
  transition: color var(--transition);
}
.contato-lista a:hover { color: var(--verde-medio); }

@media (min-width: 768px) {
  .info-inner { flex-direction: row; gap: 0; }
  .info-col {
    flex: 1;
    padding: 0 32px;
    border-right: 1px solid #ddd;
  }
  .info-col:first-child { padding-left: 0; }
  .info-col:last-child { border-right: none; padding-right: 0; }
}

/* ── CTA FINAL ──────────────────────────────────────────────── */
#cta-final { background: var(--preto); }

.cta-final-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5.5vw, 52px);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.1;
}

#cta-final p {
  font-size: 16px;
  color: #999;
  max-width: 500px;
  line-height: 1.65;
}

.cta-final-horario {
  font-size: 13px;
  color: #666;
  margin-top: -4px;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
#footer { background: var(--carvao); border-top: 1px solid rgba(255,255,255,0.06); }

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--branco);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  color: #777;
  margin-bottom: 6px;
}

.footer-copy { font-size: 12px; color: #555; }

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: #777;
  line-height: 1.65;
}

.footer-info a { color: #999; transition: color var(--transition); }
.footer-info a:hover { color: var(--verde-neon); }

.footer-horario { font-size: 12px; color: #555; }
.footer-legal { margin-top: 4px; }
.footer-legal a { font-size: 12px; color: #999; text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--verde-neon); }

@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer-brand { max-width: 340px; }
}

/* ── BOTÃO FLUTUANTE WHATSAPP ───────────────────────────────── */
.wa-flutuante {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: var(--verde-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
}

.wa-flutuante.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.wa-flutuante:hover {
  background: #1ebe57;
  transform: scale(1.08);
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--carvao);
  color: var(--branco);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--carvao);
}

@media (hover: hover) {
  .wa-flutuante:hover .wa-tooltip { opacity: 1; }
}

/* ── MAPA ────────────────────────────────────────────────────── */
#mapa { background: var(--cinza-claro); }

#mapa h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 10px;
}

.mapa-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 24px;
}

.mapa-embed iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.mapa-cta { margin-top: 24px; }

@media (min-width: 768px) {
  .mapa-embed iframe { height: 460px; }
}

/* ── PLACEHOLDER PARA IMAGEM AUSENTE ────────────────────────── */
.img-placeholder {
  background: var(--verde-escuro);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── PÁGINA LEGAL (Política de Privacidade) ─────────────────── */
.legal-header { background: var(--carvao); }
.legal-header-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.legal-back {
  color: var(--cinza-claro);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.legal-back:hover { color: var(--verde-neon); }

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 6vw, 44px);
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 8px;
}
.legal-update {
  font-size: 13px;
  color: var(--cinza-medio);
  margin-bottom: 28px;
}
.legal h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--preto);
  margin: 32px 0 10px;
}
.legal p { font-size: 15px; color: var(--cinza-escuro); margin-bottom: 14px; line-height: 1.7; }
.legal ul { margin: 0 0 14px 20px; }
.legal li { font-size: 15px; color: var(--cinza-escuro); line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.legal strong { color: var(--preto); }
.legal a { color: var(--verde-medio); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--verde-escuro); }
.legal-back-bottom { margin-top: 36px; font-weight: 600; }

/* ── OTIMIZAÇÃO SMARTPHONE (≤ 767px) ────────────────────────── */
@media (max-width: 767px) {
  :root { --section-pad: 56px 18px; }

  /* CTAs principais ocupam a largura toda: alvo de toque maior e mais óbvio */
  .btn-whatsapp.btn-lg,
  .btn-whatsapp.btn-xl,
  .btn-branco,
  .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Hero: garante o CTA acima da dobra em 375px */
  #hero { min-height: auto; padding-top: 24px; }
  .hero-inner { padding: 28px 18px 40px; gap: 28px; }
  #hero h1 { font-size: clamp(30px, 8.5vw, 40px); margin-bottom: 16px; }
  .hero-subtitle { font-size: 15px; margin-bottom: 24px; }
  .hero-image { order: 3; }
  .hero-img-wrap { height: 240px; }

  /* Botão flutuante um pouco menor e mais perto da borda no celular */
  .wa-flutuante { width: 56px; height: 56px; bottom: 18px; right: 18px; }

  /* Tipografia de títulos mais contida em telas estreitas */
  .promessa-card h3, .info-col h3 { font-size: 19px; }
  .servico-card span { font-size: 17px; }

  /* Depoimentos: respiro entre cards empilhados */
  .depoimento-card { padding: 30px 22px 22px; }
}

/* ── TELAS MUITO ESTREITAS (≤ 360px) ────────────────────────── */
@media (max-width: 360px) {
  .servicos-grid { gap: 12px; }
  .servico-card { padding: 18px 14px; }
  .navbar-logo { font-size: 19px; }
}

/* ── RESPEITAR "REDUZIR MOVIMENTO" ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in-up { opacity: 1; transform: none; }
}
