/* ==========================================================================
   COPERGEO — Sistema de diseño (HTML estático)
   Paleta: #FD9800 (ámbar) · Navy #0E1420 · Neutros claros
   Tipografía: Space Grotesk (títulos) + Inter (cuerpo)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Marca */
  --amber: #FD9800;
  --amber-600: #E88800;
  --amber-700: #CC7600;
  --amber-050: #FFF4E3;
  --amber-100: #FFE7C4;

  /* Neutros */
  --ink: #0E1420;         /* navy casi negro */
  --ink-800: #182031;
  --ink-700: #24304a;
  --slate-900: #131a26;
  --slate-700: #33415a;
  --slate-600: #4a5872;
  --slate-500: #6b7890;
  --slate-300: #cbd3e0;
  --line: #e7eaf1;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-warm: #fff9f0;

  /* Sistema */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(14,20,32,.06), 0 1px 3px rgba(14,20,32,.05);
  --shadow-md: 0 6px 20px rgba(14,20,32,.08);
  --shadow-lg: 0 22px 50px rgba(14,20,32,.16);
  --shadow-amber: 0 12px 28px rgba(253,152,0,.32);
  --container: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --z-header: 50;

  --font-head: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

/* ---------- Tipografía ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--slate-900);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { max-width: 68ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--amber-700);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--amber); border-radius: 2px;
}
.eyebrow.center { justify-content: center; }
.text-amber { color: var(--amber); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-soft { background: var(--bg-soft); }
.section-warm { background: var(--bg-warm); }
.section-dark { background: var(--ink); color: #c8cfdd; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--slate-600); margin-top: 1rem; font-size: 1.08rem; }
.section-dark .section-head p { color: #9aa6bd; }
.lead { font-size: 1.15rem; color: var(--slate-600); }

/* ---------- Botones ---------- */
.btn {
  --_bg: var(--amber);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.6rem; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  background: var(--_bg); color: #1b1205;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  box-shadow: var(--shadow-amber); white-space: nowrap;
}
.btn:hover { background: var(--amber-600); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(253,152,0,.42); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn-ghost {
  --_bg: transparent; color: var(--slate-900);
  box-shadow: inset 0 0 0 1.6px var(--line);
}
.btn-ghost:hover { --_bg: #fff; box-shadow: inset 0 0 0 1.6px var(--amber); color: var(--amber-700); transform: translateY(-2px); }
.btn-on-dark { color: #fff; box-shadow: inset 0 0 0 1.6px rgba(255,255,255,.28); background: transparent; }
.btn-on-dark:hover { background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1.6px rgba(255,255,255,.55); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
.brand .brand-fallback {
  font-family: var(--font-head); font-weight: 700; font-style: italic;
  font-size: 1.5rem; color: var(--amber); letter-spacing: -.01em;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: .96rem;
  color: #e9edf5; position: relative; padding: .3rem 0;
  transition: color .2s var(--ease);
}
.site-header.scrolled .nav-links a { color: var(--slate-700); }
.nav-links a:hover, .nav-links a.active { color: var(--amber); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--amber); border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; color: #fff; align-items: center; justify-content: center; }
.site-header.scrolled .nav-toggle { color: var(--slate-900); }
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(14,20,32,.6); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-panel {
  position: absolute; top: 0; right: 0; width: min(88vw, 360px); height: 100%;
  background: #fff; padding: 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .3rem;
  transform: translateX(100%); transition: transform .35s var(--ease);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open .mobile-panel { transform: translateX(0); }
.mobile-panel .mm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.mobile-panel .mm-head img { height: 30px; }
.mobile-panel a.mm-link {
  font-family: var(--font-head); font-weight: 600; font-size: 1.1rem;
  color: var(--slate-900); padding: .9rem .4rem; border-bottom: 1px solid var(--line);
}
.mobile-panel a.mm-link:hover { color: var(--amber); }
.mobile-panel .btn { margin-top: 1.2rem; }
.mm-close { width: 42px; height: 42px; display: grid; place-items: center; color: var(--slate-700); }
.mm-close svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: #fff; padding-top: 96px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,20,32,.78) 0%, rgba(14,20,32,.62) 45%, rgba(14,20,32,.86) 100%);
}
.hero-inner { max-width: 860px; }
.hero .badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: .5rem 1rem; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: #ffdca6;
  backdrop-filter: blur(6px); margin-bottom: 1.6rem;
}
.hero h1 { color: #fff; margin-bottom: 1.3rem; }
.hero h1 .hl { color: var(--amber); }
.hero p { font-size: 1.2rem; color: #d6dcea; max-width: 60ch; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-page { min-height: 62vh; }
.hero-page .hero-inner { max-width: 780px; }

/* ---------- Trust bar / mini features ---------- */
.trust-strip { background: var(--ink-800); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.08); }
.trust-item { background: var(--ink-800); padding: 2.2rem; display: flex; gap: 1.1rem; align-items: flex-start; }
.trust-item .ic { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: rgba(253,152,0,.14); color: var(--amber); }
.trust-item .ic svg { width: 26px; height: 26px; }
.trust-item h3 { color: #fff; font-size: 1.12rem; margin-bottom: .35rem; }
.trust-item p { color: #97a2b8; font-size: .96rem; margin: 0; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3.4; object-fit: cover; }
.split-media .float-stat {
  position: absolute; right: -18px; bottom: -22px; background: #fff;
  border-radius: var(--radius); padding: 1.1rem 1.4rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .9rem; border: 1px solid var(--line);
}
.split-media .float-stat .num { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: var(--amber); line-height: 1; }
.split-media .float-stat .lbl { font-size: .86rem; color: var(--slate-600); max-width: 12ch; }
.check-list { display: grid; gap: .85rem; margin-top: 1.6rem; }
.check-list li { display: flex; align-items: center; gap: .75rem; font-weight: 500; color: var(--slate-700); }
.check-list li svg { width: 22px; height: 22px; color: var(--amber); flex-shrink: 0; }

/* ---------- Cards de servicios ---------- */
.cards-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.s-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.1rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; overflow: hidden;
}
.s-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.s-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.s-card:hover::before { transform: scaleX(1); }
.s-card .ic { width: 58px; height: 58px; border-radius: 14px; background: var(--amber-050); color: var(--amber-700); display: grid; place-items: center; margin-bottom: 1.3rem; transition: background .3s, color .3s; }
.s-card:hover .ic { background: var(--amber); color: #fff; }
.s-card .ic svg { width: 30px; height: 30px; }
.s-card h3 { margin-bottom: .6rem; }
.s-card p { color: var(--slate-600); font-size: .98rem; margin-bottom: 1rem; }
.s-card .card-list { display: grid; gap: .5rem; margin-bottom: 1.3rem; }
.s-card .card-list li { display: flex; gap: .55rem; font-size: .93rem; color: var(--slate-600); }
.s-card .card-list li svg { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.card-link { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--amber-700); display: inline-flex; align-items: center; gap: .4rem; transition: gap .2s var(--ease); }
.card-link:hover { gap: .7rem; }
.card-link svg { width: 18px; height: 18px; }

/* ---------- Galería ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.gallery a { position: relative; overflow: hidden; border-radius: var(--radius); display: block; }
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(14,20,32,.5)); opacity: 0; transition: opacity .3s; }
.gallery a:hover img { transform: scale(1.07); }
.gallery a:hover::after { opacity: 1; }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--amber); line-height: 1; letter-spacing: -.03em; }
.stat .lbl { margin-top: .5rem; font-size: .98rem; color: #9aa6bd; }
.section-warm .stat .lbl, .bg-soft .stat .lbl { color: var(--slate-600); }

/* ---------- Proceso (steps) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding: 2.2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.step .n { font-family: var(--font-head); font-weight: 700; font-size: 3rem; color: var(--amber-100); line-height: 1; letter-spacing: -.04em; }
.step h3 { margin: .4rem 0 .5rem; }
.step p { color: var(--slate-600); font-size: .97rem; margin: 0; }

/* ---------- Ventajas (feature list grid) ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.feat {
  display: flex; gap: 1rem; padding: 1.6rem; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.feat:hover { background: rgba(253,152,0,.08); border-color: rgba(253,152,0,.35); transform: translateY(-3px); }
.feat .ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 11px; background: rgba(253,152,0,.16); color: var(--amber); display: grid; place-items: center; }
.feat .ic svg { width: 24px; height: 24px; }
.feat h3 { color: #fff; font-size: 1.08rem; margin-bottom: .3rem; }
.feat p { color: #93a0b7; font-size: .93rem; margin: 0; }

/* ---------- Testimonios ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tst { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.tst .stars { display: flex; gap: 3px; color: var(--amber); }
.tst .stars svg { width: 20px; height: 20px; }
.tst blockquote { font-size: 1.05rem; color: var(--slate-700); line-height: 1.6; font-style: italic; }
.tst .who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.tst .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--amber-050); color: var(--amber-700); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.tst .who .name { font-family: var(--font-head); font-weight: 600; color: var(--slate-900); font-size: .98rem; }
.tst .who .role { font-size: .85rem; color: var(--slate-500); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink); border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.cta-band::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(253,152,0,.22), transparent 70%); top: -180px; right: -120px; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: #9aa6bd; margin: 1rem auto 2rem; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.info-card { display: flex; gap: 1rem; padding: 1.4rem; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; margin-bottom: 1rem; }
.info-card .ic { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--amber-050); color: var(--amber-700); display: grid; place-items: center; }
.info-card .ic svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 1.02rem; margin-bottom: .25rem; }
.info-card p, .info-card a { font-size: .96rem; color: var(--slate-600); margin: 0; }
.info-card a:hover { color: var(--amber-700); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: var(--slate-900); margin-bottom: .45rem; }
.field input, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 11px;
  font: inherit; font-size: .98rem; color: var(--slate-900); background: var(--bg-soft);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--amber); background: #fff; box-shadow: 0 0 0 4px rgba(253,152,0,.14); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--slate-500); margin-top: .8rem; text-align: center; }
.form-status { font-size: .95rem; margin-top: 1rem; padding: .8rem 1rem; border-radius: 11px; text-align: center; display: none; }
.form-status.ok { display: block; background: #e9f8ef; color: #1a7a45; border: 1px solid #b8e6ca; }
.form-status.err { display: block; background: #fdecec; color: #b3261e; border: 1px solid #f5c2c0; }
.form-status.err a { color: inherit; text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #97a2b8; padding-top: clamp(56px, 8vw, 88px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand img { height: 40px; margin-bottom: 1.1rem; }
.footer-brand p { font-size: .95rem; color: #8b96ad; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; font-family: var(--font-head); }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a, .footer-col li { font-size: .95rem; color: #97a2b8; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--amber); }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .8rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 1.5rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .88rem; color: #7c869d; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 12px 28px rgba(37,211,102,.44);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }

/* ---------- Reveal animations (progressive enhancement) ---------- */
/* El estado oculto solo se aplica si hay JS (clase .js en <html>).
   Sin JS, el contenido siempre es visible. */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .cards-grid, .steps, .feat-grid, .tst-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse .split-media { order: 0; }
  .split-media img { aspect-ratio: 16/11; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards-grid, .cards-grid.cols-2, .steps, .feat-grid, .tst-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery .wide, .gallery .tall { grid-column: auto; grid-row: auto; }
  .split-media .float-stat { right: 12px; bottom: -18px; }
}

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