/* ============================================================
   GRUPO ASTRA · Inmobiliaria boutique CDMX
   Sistema de diseño adaptado de "Zenith Realty" (Claude Design)
   Minimalista editorial · monocromo tinta + acento verde pino
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #F8F8F8;
  --surface: #FFFFFF;
  --ink: #141414;
  --muted: #5F5F5F;        /* texto secundario · AA (~6:1 sobre bg) */
  --faint: #6B6B6B;        /* meta pequeña · AA (~5:1 sobre bg) */
  --line: rgba(20, 20, 20, 0.10);
  --line-soft: rgba(20, 20, 20, 0.07);
  --accent: #2F4A3A;       /* verde pino */
  --accent-ink: #24382C;   /* hover */
  --on-accent: #FFFFFF;

  --maxw: 1400px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad-x: clamp(22px, 5vw, 64px);
}

/* ---------- Reset base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
::selection { background: var(--ink); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; }

/* Skip link (accesibilidad) */
.skip { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--ink); color: #fff; padding: 12px 18px; font-size: 13px; font-weight: 700; }
.skip:focus { left: 12px; top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: inherit; font-size: 13px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 16px 34px; border: none; cursor: pointer;
  border-radius: 0; background: var(--accent); color: var(--on-accent);
  box-shadow: 0 6px 16px -12px rgba(20, 20, 20, 0.28);
  transition: background 0.28s var(--ease), transform 0.28s var(--ease);
}
.btn:hover { background: var(--accent-ink); }
.btn:active { transform: translateY(1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font: inherit; font-size: 13px; font-weight: 500; letter-spacing: -0.01em;
  text-transform: none; padding: 13px 26px; cursor: pointer;
  border: 1px solid var(--line); background: transparent; color: var(--ink);
  border-radius: 0; transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-ghost:hover { background: #EFEFEF; border-color: rgba(20,20,20,0.18); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  font: inherit; font-size: 13px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; padding: 16px 34px; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.55); background: transparent; color: #fff;
  border-radius: 0; transition: background 0.25s var(--ease);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.on-accent :focus-visible, .btn-outline-light:focus-visible { outline-color: #fff; }

/* ---------- Nav ---------- */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(18px, 2.4vw, 26px) var(--pad-x);
}
.brand { line-height: 0.85; letter-spacing: -0.045em; font-weight: 900; font-size: 20px; }
.brand span { display: block; }
.brand .a2 { color: var(--accent); }
.nav .brand { color: #fff; }
.nav .brand .a2 { color: #A9C7B8; }

.nav-links { display: flex; align-items: center; gap: clamp(20px, 2vw, 34px); }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: -0.01em; color: #fff; transition: opacity 0.2s ease; }
.nav-links a:hover { opacity: 0.6; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.42); background: rgba(255,255,255,0.12); color: #fff;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 10px 22px; font-size: 13px; font-weight: 500; letter-spacing: -0.01em;
  cursor: pointer; transition: background 0.25s var(--ease);
}
.nav-cta:hover { background: rgba(255,255,255,0.24); }

.hamburger {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: rgba(20,26,22,0.35);
  border: 1px solid rgba(255,255,255,0.4); color: #fff; cursor: pointer;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

/* ---------- Mobile menu ---------- */
.menu-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 55;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.menu-panel {
  position: fixed; top: 0; right: 0; height: 100%; width: min(370px, 86vw);
  background: var(--bg); z-index: 60; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.5s var(--ease);
  box-shadow: -24px 0 60px rgba(0,0,0,0.14);
}
body.menu-open .menu-backdrop { opacity: 1; pointer-events: auto; }
body.menu-open .menu-panel { transform: translateX(0); }
body.menu-open { overflow: hidden; }
.menu-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; }
.menu-head .brand { font-size: 15px; line-height: 1; }
.menu-head .brand span { display: inline; }
.menu-close { background: none; border: none; cursor: pointer; color: var(--ink); display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; margin-right: -10px; }
.menu-links { display: flex; flex-direction: column; padding: 8px 24px; flex: 1 1 auto; }
.menu-links a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 22px; font-weight: 500; letter-spacing: -0.02em; padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.menu-foot { padding: 24px; }
.menu-foot .btn { width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img, .hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,16,13,0.50) 0%, rgba(10,16,13,0.16) 34%, rgba(10,16,13,0.30) 60%, rgba(10,16,13,0.86) 100%);
}
.hero-inner {
  position: relative; z-index: 2; flex: 1 1 auto;
  display: grid; grid-template-columns: repeat(12, 1fr);
  align-items: end; column-gap: 24px; row-gap: 26px;
  padding: 0 var(--pad-x) clamp(44px, 7vh, 92px);
}
.hero-left { grid-column: 1 / 9; display: flex; flex-direction: column; align-items: flex-start; }
.hero-right { grid-column: 9 / 13; padding-bottom: 6px; }
.hero h1 {
  margin: 0; font-size: clamp(36px, 5.6vw, 72px); font-weight: 400;
  letter-spacing: -0.035em; line-height: 1.04; max-width: 20ch; text-wrap: balance;
  color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.38);
}
.hero-right p { margin: 0; color: rgba(255,255,255,0.92); font-size: clamp(15px, 1.3vw, 18px); line-height: 1.5; max-width: 34ch; text-shadow: 0 1px 16px rgba(0,0,0,0.45); }
.hero .btn { margin-top: clamp(26px, 3vw, 38px); }

/* ---------- Section shell ---------- */
.section { padding: clamp(70px, 8vw, 130px) var(--pad-x); }
.section-tight { padding: clamp(45px, 5vw, 80px) var(--pad-x); }
.sec-head {
  display: grid; grid-template-columns: repeat(12, 1fr);
  column-gap: 24px; row-gap: 16px; align-items: end; margin-bottom: clamp(36px, 5vw, 64px);
}
.sec-head h2 {
  grid-column: 1 / 8; margin: 0; font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 400; letter-spacing: -0.03em; line-height: 1.08; text-wrap: balance;
}
.sec-head .sub { grid-column: 9 / 13; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 36ch; }
.sec-note { grid-column: 1 / 13; margin: 6px 0 0; color: var(--faint); font-size: 12.5px; letter-spacing: 0.01em; }

/* ---------- Propiedades ---------- */
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.6vw, 24px); }
.card { background: var(--surface); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.card:hover { box-shadow: 0 30px 60px -30px rgba(20,20,20,0.28); }
.card-img { overflow: hidden; aspect-ratio: 1 / 1; }
.card-img img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 30s var(--ease) infinite alternate; will-change: transform; }
.card-body { padding: clamp(18px, 1.5vw, 24px); display: flex; flex-direction: column; flex: 1 1 auto; }
.card-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.card-top h3 { margin: 0; font-size: clamp(17px, 1.5vw, 20px); font-weight: 500; letter-spacing: -0.02em; }
.card-price { font-size: 15px; font-weight: 700; white-space: nowrap; }
.card-loc { margin: 7px 0 0; color: var(--faint); font-size: 12px; letter-spacing: 0.01em; }
.card-specs {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(16px, 1.4vw, 20px);
  padding-top: clamp(14px, 1.2vw, 18px); border-top: 1px solid var(--line-soft);
}
.spec { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 500; letter-spacing: -0.01em; }
.spec svg { color: var(--faint); }
.card-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); }
.card-link svg { transition: transform 0.25s var(--ease); }
.card:hover .card-link svg { transform: translateX(3px); }

/* ---------- Proceso ---------- */
.proc-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 1.6vw, 24px); align-items: stretch; }
.proc-left { grid-column: 1 / 5; background: var(--surface); padding: clamp(28px, 3vw, 56px); display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.proc-left h3 { margin: 0; font-size: clamp(20px, 1.8vw, 26px); font-weight: 500; letter-spacing: -0.02em; }
.proc-left p { margin: 16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; max-width: 42ch; }
.proc-steps { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; }
.proc-step { border-top: 1px solid var(--line-soft); padding: 14px 0; font-size: 13px; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); display: flex; gap: 10px; }
.proc-step:first-child { border-top: none; }
.proc-step .n { color: var(--accent); font-weight: 700; }
.proc-img { grid-column: 5 / 13; overflow: hidden; aspect-ratio: 16 / 10; }
.proc-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Nosotros ---------- */
.about-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(24px, 3vw, 56px); align-items: center; }
.about-img { grid-column: 1 / 6; overflow: hidden; aspect-ratio: 3 / 4; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text { grid-column: 7 / 13; }
.about-text h2 { margin: 0; font-size: clamp(28px, 3.6vw, 46px); font-weight: 400; letter-spacing: -0.03em; line-height: 1.08; }
.about-kicker { margin: 0 0 14px; color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.about-text p { color: var(--muted); font-size: 15.5px; line-height: 1.72; max-width: 56ch; }
.about-text p + p { margin-top: 16px; }
.about-sign { margin-top: 24px; font-weight: 700; letter-spacing: -0.01em; }
.about-sign span { display: block; color: var(--faint); font-weight: 400; font-size: 13px; letter-spacing: 0; margin-top: 2px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.about-tags span { font-size: 13px; color: var(--muted); }

/* ---------- Vende (banda acento) ---------- */
.sell { background: var(--accent); color: var(--on-accent); }
.sell-inner { padding: clamp(60px, 8vw, 110px) var(--pad-x); display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: center; }
.sell h2 { grid-column: 1 / 8; margin: 0; font-size: clamp(30px, 4.4vw, 54px); font-weight: 400; letter-spacing: -0.03em; line-height: 1.06; text-wrap: balance; }
.sell-right { grid-column: 8 / 13; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.sell-right p { margin: 0; color: rgba(255,255,255,0.82); font-size: 15.5px; line-height: 1.65; max-width: 40ch; }

/* ---------- Contacto ---------- */
.contact-inner { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(24px, 3vw, 40px); align-items: center; }
.contact-inner h2 { grid-column: 1 / 7; margin: 0; font-size: clamp(30px, 4.4vw, 54px); font-weight: 400; letter-spacing: -0.03em; line-height: 1.05; }
.contact-right { grid-column: 8 / 13; }
.contact-right p { margin: 0 0 22px; color: var(--muted); font-size: 15.5px; line-height: 1.65; max-width: 40ch; }
.contact-phone { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; font-size: 15px; font-weight: 700; }
.contact-phone svg { color: var(--accent); }
.contact-hours { margin-top: 10px; color: var(--faint); font-size: 13px; }

/* ---------- Footer ---------- */
.footer { padding: clamp(40px, 5vw, 64px) var(--pad-x); border-top: 1px solid var(--line); }
.footer-grid { display: flex; flex-wrap: wrap; gap: 28px 40px; align-items: center; justify-content: space-between; }
.footer .brand { font-size: 18px; }
.footer .brand span { display: inline; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--ink); }
.footer-legal { width: 100%; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line-soft); color: var(--faint); font-size: 12.5px; display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: space-between; }

/* ---------- Reveal (seguro: visible por defecto, se oculta SOLO con JS) ---------- */
.reveal { transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
html.js .reveal { opacity: 0; transform: translateY(28px); }
html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Movimiento inmersivo (Ken Burns + banda cine) ---------- */
@keyframes kenburns { 0% { transform: scale(1.03); } 100% { transform: scale(1.12) translate(-1.4%, -1.2%); } }
.proc-img img { animation: kenburns 26s var(--ease) infinite alternate; will-change: transform; }
.about-img img { animation: kenburns 34s var(--ease) infinite alternate; will-change: transform; }

.cine { position: relative; min-height: 78vh; min-height: 78dvh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #0C100D; }
.cine-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cine-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,16,13,0.58) 0%, rgba(10,16,13,0.44) 50%, rgba(10,16,13,0.68) 100%); }
.cine-inner { position: relative; z-index: 2; padding: 0 var(--pad-x); text-align: center; }
.cine-line { margin: 0 auto; max-width: 22ch; color: #fff; font-size: clamp(26px, 4vw, 48px); font-weight: 400; letter-spacing: -0.03em; line-height: 1.14; text-wrap: balance; text-shadow: 0 2px 26px rgba(0,0,0,0.42); }
@media (max-width: 900px) { .cine { min-height: 60vh; min-height: 60dvh; } }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; align-items: start; padding-top: 96px; }
  .hero-left, .hero-right { grid-column: auto; }
  .hero-right { padding-bottom: 0; }
  .sec-head h2, .sec-head .sub { grid-column: 1 / 13; }
  .prop-grid { grid-template-columns: 1fr; }
  .card-img { aspect-ratio: 4 / 3; }
  .proc-left, .proc-img { grid-column: 1 / 13; }
  .proc-img { aspect-ratio: 16 / 9; }
  .about-img, .about-text { grid-column: 1 / 13; }
  .about-img { aspect-ratio: 16 / 10; }
  .sell h2, .sell-right { grid-column: 1 / 13; }
  .contact-inner h2, .contact-right { grid-column: 1 / 13; }
}
@media (min-width: 901px) and (max-width: 1180px) {
  .prop-grid { gap: 18px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html.js .reveal, .reveal { opacity: 1 !important; transform: none !important; }
  .card-img img, .proc-img img, .about-img img { animation: none !important; transform: none !important; }
}

/* ============================================================
   Catálogo dinámico · filtros · skeleton · modal detalle
   ============================================================ */
.card { cursor: pointer; }

.prop-filters { display: flex; gap: 10px; margin-bottom: clamp(20px,2.5vw,30px); flex-wrap: wrap; }
.filter-btn { font: inherit; font-size: 13px; font-weight: 500; letter-spacing: -0.01em; padding: 8px 18px; border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; border-radius: 0; transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease); }
.filter-btn:hover { color: var(--ink); border-color: rgba(20,20,20,0.2); }
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.card-skeleton { pointer-events: none; }
.card-img.sk, .card-skeleton .sk-line { background: linear-gradient(90deg,#ececec 25%,#f6f6f6 37%,#ececec 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; }
.card-skeleton .card-img.sk { aspect-ratio: 1 / 1; }
.card-skeleton .sk-line { height: 12px; margin: 10px 0; border-radius: 2px; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

.prop-empty { grid-column: 1 / -1; text-align: center; padding: clamp(40px,6vw,80px) 0; }
.prop-empty p { margin: 0 0 22px; color: var(--muted); font-size: 16px; }

.footer-access { font-size: 13px; color: var(--faint); transition: color 0.2s ease; }
.footer-access:hover { color: var(--ink); }

/* Modal detalle */
.pm { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center; padding: clamp(12px,3vw,40px); opacity: 0; transition: opacity 0.25s var(--ease); }
.pm.open { opacity: 1; }
.pm-backdrop { position: absolute; inset: 0; background: rgba(10,16,13,0.62); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
body.modal-open { overflow: hidden; }
.pm-panel { position: relative; z-index: 1; background: var(--surface); width: min(1040px, 100%); max-height: 92dvh; overflow: auto; display: grid; grid-template-columns: 1.15fr 1fr; grid-template-areas: "gallery info" "thumbs info"; column-gap: clamp(24px,3vw,44px); transform: translateY(12px) scale(0.99); transition: transform 0.3s var(--ease); }
.pm.open .pm-panel { transform: none; }
.pm-close { position: absolute; top: 14px; right: 14px; z-index: 3; width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.85); border: 1px solid var(--line); color: var(--ink); cursor: pointer; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.pm-gallery { grid-area: gallery; position: relative; aspect-ratio: 4 / 3; background: #ececec; overflow: hidden; }
.pm-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.pm-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.85); border: none; color: var(--ink); cursor: pointer; }
.pm-prev { left: 10px; }
.pm-next { right: 10px; }
.pm-thumbs { grid-area: thumbs; display: flex; gap: 8px; padding: 10px 10px 14px; overflow-x: auto; }
.pm-thumb { flex: 0 0 auto; width: 68px; height: 52px; padding: 0; border: 2px solid transparent; background: none; cursor: pointer; overflow: hidden; }
.pm-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pm-thumb.active { border-color: var(--accent); }
.pm-info { grid-area: info; padding: clamp(24px,3vw,44px) clamp(24px,3vw,40px) clamp(24px,3vw,40px) 0; display: flex; flex-direction: column; align-items: flex-start; }
.pm-badge { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.pm-title { margin: 0; font-size: clamp(22px,2.4vw,32px); font-weight: 400; letter-spacing: -0.025em; line-height: 1.12; }
.pm-price { margin-top: 10px; font-size: 22px; font-weight: 700; }
.pm-loc { margin: 6px 0 0; color: var(--faint); font-size: 13px; }
.pm-specs { display: flex; flex-wrap: wrap; gap: 14px; margin: 20px 0; padding: 16px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); width: 100%; }
.pm-desc { margin: 0 0 26px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.pm-info .btn { margin-top: auto; }

@media (max-width: 760px) {
  .pm-panel { grid-template-columns: 1fr; grid-template-areas: "gallery" "thumbs" "info"; max-height: 94dvh; }
  .pm-info { padding: clamp(20px,5vw,28px); }
}
@media (prefers-reduced-motion: reduce) {
  .card-img.sk, .card-skeleton .sk-line { animation: none !important; }
}
