/* =========================
   RESET / BASE (MINIMAL + ANIM)
========================= */
* { box-sizing: border-box; }

html{
  scrollbar-width: none;
  scroll-behavior: smooth;

  /* ✅ importante para #doctrina con navbar fijo */
  scroll-padding-top: 110px;
}

:root{
  /* ===== NUEVA PALETA (LA QUE PEDISTE) ===== */
  --color-50:  #F0F3F4;
  --color-100: #D6DDE0;
  --color-200: #BCC7CD;
  --color-300: #A2B1B9;
  --color-400: #889BA5;
  --color-500: #6E8591;
  --color-600: #5A6D77;
  --color-700: #46555D;
  --color-800: #323D43;
  --color-900: #1B2124;
  --color-950: #0B0D0F;

  /* ===== MAPPING DEL DISEÑO A TU PALETA ===== */
  --bg: var(--color-950);
  --surface: var(--color-900);
  --card: var(--color-900);
  --card2: var(--color-950);

  --text: var(--color-50);
  --text2: rgba(240,243,244,0.78);
  --text3: rgba(240,243,244,0.62);

  /* acentos */
  --gold: var(--color-200);
  --blue: var(--color-300);

  --line: rgba(240,243,244,0.10);
  --line-soft: rgba(240,243,244,0.08);

  --shadow: 0 18px 48px rgba(0,0,0,0.45);
  --shadow2: 0 12px 28px rgba(0,0,0,0.35);

  --r18: 18px;
  --r22: 22px;
  --r26: 26px;

  --ease-out: cubic-bezier(.2,.8,.2,1);
  --ease-spring: cubic-bezier(.2,1.2,.2,1);

  /* ✅ altura navbar */
  --nav-h: 74px;
}

body{
  margin: 0;
  min-height: 100vh;
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

/* textura minimal (opcional, súper sutil) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(90deg, rgba(240,243,244,0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(240,243,244,0.025) 1px, transparent 1px);
  background-size: 46px 46px;
}

/* =========================================================
   ANIMACIONES (entrada + micro) - minimal
========================================================= */
@keyframes enterUp{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes enterSoft{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* =========================================================
   NAVBAR (MINIMAL)
========================================================= */
.navbar{
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  background: transparent;
}

.logo img{
  max-width: 220px;
  height: auto;
  opacity: .98;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar a{
  position: relative;
  text-decoration: none;
  color: rgba(240,243,244,0.88);
  font-weight: 900;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}

.navbar a:hover{
  background: rgba(240,243,244,0.05);
  border-color: rgba(240,243,244,0.08);
  color: var(--color-50);
  transform: translateY(-1px);
}

/* underline */
.navbar a::after{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s var(--ease-out);
  opacity: .85;
}
.navbar a:hover::after{ transform: scaleX(1); }

.profile{
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(240,243,244,0.14);
  overflow: hidden;
  background: rgba(240,243,244,0.03);
  transition: transform .18s var(--ease-out), border-color .18s var(--ease-out);
}
.profile:hover{
  transform: translateY(-1px);
  border-color: rgba(188,199,205,0.35);
}

#avatar{
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.menu-icon{
  display: none;
  font-size: 30px;
  color: var(--color-50);
  cursor: pointer;
  user-select: none;
}

/* =========================
   HERO (MINIMAL)
========================= */
.principal{
  /* ✅ antes: 110px fijo. ahora: depende del navbar */
  padding-top: calc(var(--nav-h) + 36px);
  padding-bottom: 30px;
  display: grid;
  place-items: center;
}

.hero{
  width: min(1150px, calc(100% - 28px));
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  position: relative;
}

/* ya no usamos decoraciones */
.hero__bg{ display:none; }

/* left */
.hero__content{
  position: relative;
  z-index: 1; /* ✅ evita cosas encima raras */
  border-radius: var(--r26);
  padding: 24px 22px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow2);
  overflow: hidden;
  animation: enterUp .70s var(--ease-out) both;
}

/* detalle: línea lateral */
.hero__content::before{
  content:"";
  position:absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: var(--gold);
  opacity: .9;
  border-radius: 999px;
}

.hero__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(188,199,205,0.28);
  background: rgba(188,199,205,0.08);
  color: rgba(240,243,244,0.92);
  font-weight: 900;
  animation: enterSoft .60s var(--ease-out) .05s both;
}

.hero__content h1{
  margin: 14px 0 8px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--color-50);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  animation: enterUp .70s var(--ease-out) .10s both;
}

.hero__text{
  margin: 0;
  line-height: 1.7;
  color: var(--text2);
  max-width: 58ch;
  animation: enterSoft .65s var(--ease-out) .16s both;
}

.hero__actions{
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: enterSoft .65s var(--ease-out) .22s both;
}

/* ✅ btn compatible con <a> y <button> */
.btn{
  appearance: none;
  -webkit-appearance: none;
  font: inherit;

  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 1000;
  letter-spacing: 0.2px;

  border: 1px solid rgba(240,243,244,0.12);
  background: transparent;

  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;

  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}

.btn--primary{
  color: var(--color-950);
  background: var(--color-200);
  border-color: rgba(188,199,205,0.40);
}
.btn--primary:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.btn--ghost{
  color: rgba(240,243,244,0.90);
  background: rgba(240,243,244,0.04);
}
.btn--ghost:hover{
  transform: translateY(-2px);
  background: rgba(240,243,244,0.06);
  border-color: rgba(240,243,244,0.16);
}

/* stats minimal */
.hero__stats{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  animation: enterUp .70s var(--ease-out) .28s both;
}

.stat{
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(240,243,244,0.09);
  background: rgba(240,243,244,0.03);
  transition: transform .18s var(--ease-out), border-color .18s var(--ease-out);
}
.stat:hover{
  transform: translateY(-2px);
  border-color: rgba(188,199,205,0.28);
}
.stat i{
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(188,199,205,0.10);
  color: var(--color-50);
  border: 1px solid rgba(188,199,205,0.22);
}
.stat strong{
  display: block;
  color: var(--color-50);
  font-weight: 1000;
}
.stat span{
  display: block;
  color: var(--text3);
  font-weight: 800;
  font-size: 0.92rem;
}

/* right */
.hero__media{
  position: relative;
  border-radius: var(--r26);
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--card2);
  box-shadow: var(--shadow2);
  overflow: hidden;
  animation: enterUp .70s var(--ease-out) .08s both;
  transition: transform .22s var(--ease-out), border-color .22s var(--ease-out);
}

.hero__media:hover{
  transform: translateY(-3px);
  border-color: rgba(188,199,205,0.24);
}

.media-card__top{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(240,243,244,0.88);
  font-weight: 1000;
  margin-bottom: 12px;
}

.media-card__top i{
  width: 42px; height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(162,177,185,0.10);
  border: 1px solid rgba(162,177,185,0.18);
}

.media-card__img img{
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(240,243,244,0.10);
  box-shadow: var(--shadow2);
  transform: translateZ(0);
  transition: transform .25s var(--ease-out);
}
.hero__media:hover .media-card__img img{
  transform: translateY(-4px);
}

.media-card__bottom{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(240,243,244,0.10);
  background: rgba(240,243,244,0.03);
  color: rgba(240,243,244,0.78);
  font-weight: 900;
  transition: transform .18s var(--ease-out), border-color .18s var(--ease-out);
}
.pill:hover{
  transform: translateY(-2px);
  border-color: rgba(188,199,205,0.22);
}

/* =========================
   OVERLAY + BANNER (MINIMAL)
========================= */
.hidden{ display: none; }

#overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 990;
}
#overlay.visible{ opacity: 1; }

#banner{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.96);
  width: min(480px, calc(100% - 26px));
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(240,243,244,0.12);
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  z-index: 999;
  transition: opacity .25s ease, transform .25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--color-50);
}
#banner.visible{
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.close{
  align-self: flex-end;
  color: #ff5a6c;
  font-size: 22px;
  cursor: pointer;
  transition: transform .18s ease;
}
.close:hover{ transform: rotate(90deg) scale(1.06); }

.banner__head{
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
}

.banner__icon{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(188,199,205,0.10);
  border: 1px solid rgba(188,199,205,0.18);
}
.banner__head h3{
  margin: 0;
  font-weight: 1000;
  letter-spacing: 0.2px;
}
.banner__head p{
  margin: 2px 0 0;
  color: rgba(240,243,244,0.72);
  font-weight: 700;
}

.contrasena{
  width: 100%;
  border: 1px solid rgba(240,243,244,0.12);
  background: rgba(240,243,244,0.04);
  color: var(--color-50);
  padding: 12px 14px;
  border-radius: 16px;
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease, transform .15s ease;
}
.contrasena:focus{
  border-color: rgba(188,199,205,0.35);
  box-shadow: 0 0 0 4px rgba(188,199,205,0.12);
  transform: translateY(-1px);
}

.enviar{
  border: none;
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--color-200);
  color: var(--color-950);
  font-weight: 1000;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
}
.enviar:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

#mensaje{
  margin: 0;
  color: #ff5a6c;
  font-weight: 900;
}

.nocontrasena{
  color: rgba(240,243,244,0.78);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px dashed rgba(240,243,244,0.25);
  width: fit-content;
}
.nocontrasena:hover{ color: rgba(240,243,244,0.92); }

/* =========================
   CARDS (MINIMAL + entrada)
========================= */
.container{
  width: min(1150px, calc(100% - 28px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.card{
  perspective: 1000px;
  border-radius: 22px;
}

.content{
  width: 100%;
  min-height: 190px;
  border-radius: 22px;
  border: 1px solid rgba(240,243,244,0.10);
  background: var(--card);
  box-shadow: var(--shadow2);
  padding: 18px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  transition: transform .15s ease, border-color .15s ease;
  color: var(--color-50);
  animation: enterUp .70s var(--ease-out) both;

  /* ✅ si luego quieres usar rotate con variables */
  transform: perspective(1000px) rotateX(var(--rotateX, 0deg)) rotateY(var(--rotateY, 0deg));
}

.container .card:nth-child(1) .content{ animation-delay: .14s; }
.container .card:nth-child(2) .content{ animation-delay: .22s; }
.container .card:nth-child(3) .content{ animation-delay: .30s; }
.container .card:nth-child(4) .content{ animation-delay: .38s; }

.card:hover .content{
  transform: perspective(1000px) translateY(-4px) rotateX(var(--rotateX, 0deg)) rotateY(var(--rotateY, 0deg));
  border-color: rgba(188,199,205,0.22);
}

.icon-wrap{
  width: 62px;
  height: 62px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: rgba(162,177,185,0.10);
  border: 1px solid rgba(162,177,185,0.16);
  margin-bottom: 10px;
  transition: transform .18s var(--ease-spring), border-color .18s var(--ease-out);
}
.card:hover .icon-wrap{
  transform: translateY(-2px);
  border-color: rgba(188,199,205,0.20);
}
.icon-wrap i{ font-size: 22px; }

.content h2{
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: -0.2px;
}
.content p{
  margin: 8px 0 0;
  color: rgba(240,243,244,0.74);
  line-height: 1.6;
}

/* =========================
   DOCTRINA (MINIMAL)
========================= */
.container2{
  width: min(1150px, calc(100% - 28px));
  margin: 70px auto 80px;
  display: grid;
  gap: 14px;
  color: var(--color-50);
}

.titulo h1{
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  animation: enterSoft .70s var(--ease-out) .12s both;
}
.titulo p{
  margin: 6px 0 0;
  color: rgba(240,243,244,0.72);
  max-width: 70ch;
  animation: enterSoft .70s var(--ease-out) .18s both;
}

.module{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  border-radius: 26px;
  border: 1px solid rgba(240,243,244,0.10);
  background: var(--card2);
  box-shadow: var(--shadow2);
  overflow: hidden;
  transition: transform .22s var(--ease-out), border-color .22s var(--ease-out);
  animation: enterUp .80s var(--ease-out) .22s both;
}
.module:hover{
  transform: translateY(-4px);
  border-color: rgba(188,199,205,0.20);
}

.module__img{ padding: 14px; }
.module__img img{
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(240,243,244,0.10);
  box-shadow: var(--shadow2);
  transition: transform .25s var(--ease-out);
}
.module:hover .module__img img{ transform: scale(1.02); }

.module__info{
  padding: 18px 16px;
  display: grid;
  gap: 10px;
  align-content: center;
}

.module__info h3{
  margin: 0;
  font-weight: 1000;
  color: rgba(240,243,244,0.92);
}

.module__info ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.module__info li{
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(240,243,244,0.78);
  font-weight: 800;
}
.module__info li i{
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(188,199,205,0.10);
  border: 1px solid rgba(188,199,205,0.18);
}

.btn--wide{
  justify-content: center;
  width: fit-content;
  padding: 12px 18px;
}

.note{
  color: rgba(240,243,244,0.65);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* =========================
   TESTIMONIOS (MINIMAL)
========================= */
.titulo-comentarios{
  width: min(1150px, calc(100% - 28px));
  margin: 0 auto;
  text-align: center;
  color: var(--color-50);
}

.titulo-comentarios h1{
  margin: 0;
  font-weight: 1000;
  font-size: clamp(1.5rem, 3.3vw, 2.3rem);
  animation: enterSoft .70s var(--ease-out) .14s both;
}
.titulo-comentarios p{
  margin: 8px 0 0;
  color: rgba(240,243,244,0.70);
  font-weight: 700;
  animation: enterSoft .70s var(--ease-out) .20s both;
}

.comentarios-container{
  width: min(1150px, calc(100% - 28px));
  margin: 20px auto 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.comentarios{
  border-radius: 22px;
  border: 1px solid rgba(240,243,244,0.10);
  background: var(--card);
  box-shadow: var(--shadow2);
  padding: 16px;
  color: var(--color-50);
  transition: transform .22s var(--ease-out), border-color .22s var(--ease-out);
  animation: enterUp .80s var(--ease-out) both;
}

.comentarios-container .comentarios:nth-child(1){ animation-delay: .12s; }
.comentarios-container .comentarios:nth-child(2){ animation-delay: .20s; }
.comentarios-container .comentarios:nth-child(3){ animation-delay: .28s; }
.comentarios-container .comentarios:nth-child(4){ animation-delay: .36s; }

.comentarios:hover{
  transform: translateY(-4px);
  border-color: rgba(188,199,205,0.20);
}

.info-de-usuario{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.foto-coment img{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(240,243,244,0.14);
  transition: transform .18s var(--ease-out), border-color .18s var(--ease-out);
}
.comentarios:hover .foto-coment img{
  transform: scale(1.03);
  border-color: rgba(188,199,205,0.20);
}

.nombres h3{
  margin: 0;
  opacity: 0.65;
  font-weight: 900;
}
.nombres h2{
  margin: 2px 0 0;
  font-weight: 1000;
  font-size: 1.1rem;
}

.comentarios p{
  margin: 0;
  color: rgba(240,243,244,0.78);
  line-height: 1.7;
}

/* =========================
   FOOTER (MINIMAL)  (si tu footer real está en footer.css, esto no estorba)
========================= */
footer{
  background: var(--surface);
  border-top: 1px solid rgba(240,243,244,0.10);
  padding: 34px 18px 22px;
  color: var(--color-50);
}

.container-footer{
  width: min(1150px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.titulo-footer h1{
  margin: 0;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 2.2rem;
}
.titulo-footer p{
  margin: 8px 0 0;
  color: rgba(240,243,244,0.72);
  font-weight: 700;
}

.footer-nav{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.footer-nav a{
  text-decoration: none;
  color: rgba(240,243,244,0.82);
  border: 1px solid rgba(240,243,244,0.12);
  background: rgba(240,243,244,0.03);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.footer-nav a:hover{
  transform: translateY(-2px);
  background: rgba(240,243,244,0.05);
  border-color: rgba(188,199,205,0.22);
}

.social-titulo{
  width: min(1150px, calc(100% - 28px));
  margin: 16px auto 0;
  text-align: center;
}
.social-titulo h3{
  margin: 0;
  color: rgba(240,243,244,0.62);
  font-weight: 800;
}

.social-footer{
  width: min(1150px, calc(100% - 28px));
  margin: 12px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  padding: 14px 0 18px;
  border-bottom: 1px solid rgba(240,243,244,0.10);
}

.social-footer img{
  width: 42px;
  height: auto;
  filter: invert(1);
  opacity: 0.88;
  transition: transform .15s ease, opacity .15s ease;
}
.social-footer img:hover{
  transform: translateY(-2px) scale(1.08);
  opacity: 1;
}

.creditos{
  width: min(1150px, calc(100% - 28px));
  margin: 16px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.creditos h3,
.creditos a{
  margin: 0;
  color: rgba(240,243,244,0.55);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .hero__media{ order: -1; }
  .hero__stats{ grid-template-columns: 1fr; }
  .module{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .container{ grid-template-columns: 1fr; }
  .comentarios-container{ grid-template-columns: 1fr; }

  .menu-icon{ display: block; }

  .nav-links{
    position: fixed;
    top: var(--nav-h);
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid rgba(240,243,244,0.10);
    box-shadow: var(--shadow2);
    z-index: 1001; /* ✅ encima */
  }
  .nav-links.show{ display: flex; }
  .profile{ display: none; }
}

@media (max-width: 520px){
  .logo img{ max-width: 150px; }
  .btn--wide{ width: 100%; }
  .creditos{ justify-content: center; text-align: center; }
}

/* =========================
   REDUCED MOTION (accesible)
========================= */
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
