/* ═══════════════════════════════════════════════════
   PINTURAS EXTRACOLOR S.A.S — Hoja de estilos principal
   Paleta corporativa oficial del manual de marca
   Responsive: móvil ≥320px · tablet ≥768px · desktop ≥1024px
   ═══════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Colores corporativos oficiales */
  --rojo:     #E30613;
  --rojo2:    #B8000F;
  --negro:    #000000;
  --azul:     #0033A0;
  --azul2:    #002480;
  --amarillo: #FFD100;
  --amarillo2:#E6BC00;
  --verde:    #009640;
  --naranja:  #FF7A00;
  --azulc:    #00B4E6;
  --morado:   #6A1B9A;
  --gris:     #9D9D9D;
  --grisc:    #E6E6E6;
  /* Neutros web */
  --bg:    #FFFFFF;
  --bglt:  #F8F7F4;
  --bglt2: #ECEAE3;
  --fb: 'Nunito', sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--fb); background: var(--bg); color: #111; overflow-x: hidden; }
img  { max-width: 100%; height: auto; }

/* ══ TOP BAR ══ */
.tbar {
  background: var(--rojo); color: #fff;
  padding: 7px 1rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1.6rem; flex-wrap: wrap;
  font-size: 12px; font-weight: 700;
}
.tbar span { display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.tbar a { color: #fff; text-decoration: none; }

/* ══ NAV ══ */
nav {
  background: #fff; border-bottom: 3px solid var(--rojo);
  position: sticky; top: 0; z-index: 200;
  padding: 0 1rem;
  box-shadow: 0 2px 14px rgba(0,0,0,.08);
}
.nv { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; height: 72px; gap: .8rem; }
.nv-logo img { height: 56px; width: auto; }
.nv-links { display: flex; flex: 1; margin-left: .5rem; }
.nv-links a {
  padding: 0 13px; height: 72px;
  display: flex; align-items: center;
  font-size: 13px; font-weight: 800; color: #333;
  text-decoration: none; cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all .2s; white-space: nowrap;
}
.nv-links a:hover, .nv-links a.on { color: var(--rojo); border-bottom-color: var(--rojo); }
.nv-r { display: flex; gap: 8px; margin-left: auto; align-items: center; }
.bwa {
  background: #25D366; color: #fff; border: none; border-radius: 8px;
  padding: 10px 16px; font-size: 12px; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; gap: 6px; font-family: var(--fb);
  transition: background .2s; white-space: nowrap; text-decoration: none;
}
.bwa:hover { background: #1ea952; }

/* Hamburguesa (móvil) */
.nv-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nv-burger span {
  display: block; width: 24px; height: 3px;
  background: var(--rojo); border-radius: 2px;
  transition: all .25s;
}
.nv-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nv-burger.open span:nth-child(2) { opacity: 0; }
.nv-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Menú móvil desplegable */
.nv-mobile {
  display: none;
  background: #fff; border-top: 1px solid var(--bglt2);
  flex-direction: column;
  position: absolute; left: 0; right: 0; top: 100%;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.nv-mobile.open { display: flex; }
.nv-mobile a {
  padding: 15px 1.4rem;
  font-size: 14px; font-weight: 800; color: #333;
  text-decoration: none; cursor: pointer;
  border-bottom: 1px solid var(--bglt);
  transition: all .15s;
}
.nv-mobile a:active, .nv-mobile a:hover { background: var(--bglt); color: var(--rojo); }

/* ══ HERO ══ */
.hero { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; padding: 0; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/fachada1.jpg');
  background-size: cover; background-position: center;
}
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.68) 48%, rgba(227,6,19,.15) 100%);
}
.hero-stripe {
  position: absolute; bottom: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg,
    var(--rojo) 0 20%, var(--amarillo) 20% 40%,
    var(--azul) 40% 60%, var(--verde) 60% 80%, var(--naranja) 80% 100%);
}
.hero-in {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 3.5rem 1.2rem;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 2.5rem; align-items: center; width: 100%;
}
.htag {
  background: var(--amarillo); color: #000;
  font-size: 10px; font-weight: 900; letter-spacing: 2px;
  padding: 5px 14px; border-radius: 4px;
  display: inline-block; margin-bottom: 1.1rem; text-transform: uppercase;
}
.hero h1 { font-size: clamp(2.2rem, 5.5vw, 4.4rem); font-weight: 900; color: #fff; line-height: 1.02; margin-bottom: .9rem; }
.hero h1 em { color: var(--amarillo); font-style: normal; display: block; }
.hsub { font-size: 15px; color: rgba(255,255,255,.66); line-height: 1.75; max-width: 440px; margin-bottom: 1.8rem; }
.hsub strong { color: #fff; }
.hctas { display: flex; gap: 11px; flex-wrap: wrap; margin-bottom: 1.8rem; }
.bam {
  background: var(--amarillo); color: #000; border: none; border-radius: 8px;
  padding: 13px 26px; font-size: 14px; font-weight: 900; cursor: pointer;
  font-family: var(--fb); display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s; text-decoration: none;
}
.bam:hover { background: var(--amarillo2); transform: translateY(-1px); }
.bou {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.4); border-radius: 8px;
  padding: 13px 22px; font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: var(--fb); display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s; text-decoration: none;
}
.bou:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.htr { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.ht  { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,.5); font-weight: 700; }
.htd { width: 6px; height: 6px; border-radius: 50%; background: var(--amarillo); flex-shrink: 0; }
.hero-r { display: flex; flex-direction: column; gap: 12px; }
.lbox {
  background: rgba(255,255,255,.95); border-radius: 16px;
  border: 3px solid var(--amarillo);
  padding: 1.3rem 1.6rem; text-align: center;
  box-shadow: 0 4px 26px rgba(0,0,0,.45);
}
.hstats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hs { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: .9rem; text-align: center; }
.hsn { font-size: 1.9rem; font-weight: 900; color: var(--amarillo); line-height: 1; }
.hsl { font-size: 10px; color: rgba(255,255,255,.45); margin-top: 3px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; }

/* ══ TICKER ══ */
.tick { background: var(--azul); overflow: hidden; }
.tick-t { display: flex; white-space: nowrap; animation: tk 26s linear infinite; }
.tick-t:hover { animation-play-state: paused; }
.ti { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; font-size: 11px; font-weight: 800; color: #fff; letter-spacing: 1.6px; text-transform: uppercase; flex-shrink: 0; }
.td { width: 5px; height: 5px; border-radius: 50%; background: var(--amarillo); opacity: .7; }
@keyframes tk { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══ SECCIONES ══ */
section { padding: 3rem 1.2rem; }
.sec { max-width: 1280px; margin: 0 auto; }
.sbadge { font-size: 10px; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; color: var(--rojo); margin-bottom: .4rem; }
.stitle { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; line-height: 1.05; margin-bottom: .5rem; }
.stitle span { color: var(--rojo); }
.ssub { font-size: 14px; color: #777; max-width: 560px; line-height: 1.7; }

/* ══ LÍNEAS ══ */
.catsec { background: var(--bglt); }
.catgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; margin-top: 1.8rem; }
.catcard {
  background: #fff; border: 2px solid var(--bglt2); border-radius: 14px;
  overflow: hidden; cursor: pointer; transition: all .22s;
  text-decoration: none; color: #111;
  display: flex; flex-direction: column;
}
.catcard:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.13); border-color: var(--cc, var(--rojo)); }
.cathd { padding: 1.3rem 1.4rem 1rem; border-top: 5px solid var(--cc, var(--rojo)); }
.catico {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--cc, var(--rojo));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: .9rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.catnm { font-size: 1.15rem; font-weight: 900; margin-bottom: .3rem; }
.catds { font-size: 12px; color: #777; line-height: 1.6; }
.catproducts { padding: .4rem 1.4rem 1.2rem; flex: 1; }
.catproducts span {
  display: inline-block;
  background: var(--bglt); border: 1px solid var(--bglt2);
  border-radius: 4px; padding: 3px 9px;
  font-size: 10px; font-weight: 800; color: #555;
  margin: 2px 3px 2px 0;
}
.catcta {
  padding: .9rem 1.4rem;
  background: var(--bglt); border-top: 1px solid var(--bglt2);
  font-size: 12px; font-weight: 800; color: var(--cc, var(--rojo));
  display: flex; align-items: center; justify-content: space-between;
}

/* ══ PRODUCTOS ══ */
.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; margin-top: 1.8rem; }
.pc {
  background: #fff; border: 2px solid var(--bglt2); border-radius: 12px;
  overflow: hidden; transition: all .22s;
  position: relative; display: flex; flex-direction: column;
}
.pc:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.12); border-color: var(--rojo); }
.pbg { position: absolute; top: 9px; left: 9px; padding: 3px 9px; border-radius: 4px; font-size: 9px; font-weight: 900; letter-spacing: .8px; text-transform: uppercase; z-index: 2; color: #fff; }
.pimg { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 3.4rem; }
.pbd { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.pln { font-size: 9px; font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase; color: var(--azul); margin-bottom: 3px; }
.pnm { font-size: 14px; font-weight: 800; line-height: 1.3; margin-bottom: 4px; }
.pds { font-size: 11px; color: #777; line-height: 1.5; margin-bottom: 8px; flex: 1; }
.pspecs { margin-bottom: 9px; }
.pspec { display: flex; align-items: center; gap: 5px; font-size: 10px; color: #666; font-weight: 600; padding: 1.5px 0; }
.pspec b { color: #333; }
.ppres { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 10px; }
.pp { background: var(--bglt); border: 1px solid var(--bglt2); border-radius: 3px; padding: 2px 7px; font-size: 9px; font-weight: 800; color: #555; }
.pwa {
  width: 100%; background: #25D366; color: #fff; border: none; border-radius: 8px;
  padding: 11px; font-size: 12px; font-weight: 800; cursor: pointer;
  font-family: var(--fb);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background .2s; text-decoration: none;
  min-height: 42px; /* táctil */
}
.pwa:hover { background: #1ea952; }

/* ══ FILTROS ══ */
.fch { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 1.4rem; }
.fc {
  background: #fff; border: 2px solid var(--bglt2); border-radius: 20px;
  padding: 7px 16px; font-size: 12px; font-weight: 800;
  cursor: pointer; color: #555; transition: all .2s;
  min-height: 36px; /* táctil */
}
.fc:hover, .fc.on { background: var(--rojo); color: #fff; border-color: var(--rojo); }

/* ══ NOSOTROS ══ */
.abgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.abimg { position: relative; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.18); }
.abimg img { width: 100%; height: 380px; object-fit: cover; display: block; }
.abbdg {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  padding: 1.5rem 1.2rem 1.1rem; color: #fff;
}
.abbdg strong { font-size: 1.4rem; font-weight: 900; color: var(--amarillo); display: block; margin-bottom: 2px; }
.abbdg span { font-size: 12px; opacity: .8; }
.abbody p { font-size: 14px; color: #555; line-height: 1.85; margin-bottom: 1rem; }
.abchips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 1rem; }
.abc { background: var(--bglt); border: 1.5px solid var(--bglt2); border-radius: 6px; padding: 6px 13px; font-size: 11px; font-weight: 800; color: #444; display: flex; align-items: center; gap: 6px; }
.abd { width: 8px; height: 8px; border-radius: 50%; background: var(--rojo); }

/* ══ PRESENTACIONES ══ */
.pres-sec { background: var(--azul); color: #fff; }
.presgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 1280px; margin: 0 auto; }
.presimg img { width: 100%; max-width: 540px; filter: drop-shadow(0 10px 30px rgba(0,0,0,.5)); border-radius: 12px; }
.presbody .stitle { color: #fff; }
.presbody .stitle span { color: var(--amarillo); }
.presbody .sbadge { color: var(--amarillo); }
.presbody p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.8; margin-top: .7rem; }
.prespills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 1.2rem; }
.prespill { background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.25); border-radius: 8px; padding: 8px 15px; font-size: 12px; font-weight: 800; text-align: center; }
.prespill span { display: block; font-size: 9px; opacity: .6; margin-top: 2px; font-weight: 600; }

/* ══ FEATURES ══ */
.featsec { background: var(--bglt); }
.fgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; margin-top: 1.8rem; }
.ft { background: #fff; border: 2px solid var(--bglt2); border-radius: 12px; padding: 1.4rem; transition: all .22s; }
.ft:hover { border-color: var(--rojo); transform: translateY(-2px); }
.fti {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--rojo);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: .9rem;
  box-shadow: 0 4px 12px rgba(227,6,19,.3);
}
.ft h4 { font-size: 1rem; font-weight: 900; margin-bottom: .4rem; letter-spacing: .2px; }
.ft p { font-size: 12px; color: #666; line-height: 1.65; }

/* ══ REVIEWS ══ */
.revsec { background: var(--negro); }
.rgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; margin-top: 1.6rem; }
.rv { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 1.3rem; transition: border-color .2s; }
.rv:hover { border-color: var(--amarillo); }
.rvs { color: var(--amarillo); font-size: 16px; margin-bottom: .5rem; }
.rvt { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.7; font-style: italic; margin-bottom: .8rem; }
.rva { font-size: 12px; font-weight: 800; color: #fff; }
.rvp { font-size: 10px; color: rgba(255,255,255,.35); margin-top: 2px; }

/* ══ CONTACTO ══ */
.consec { background: var(--azul); }
.cgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; margin-top: 1.6rem; }
.cc2 {
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 12px; padding: 1.2rem 1.3rem;
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: #fff; transition: all .2s;
  min-height: 76px; /* táctil */
}
.cc2:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.cc2.w { background: rgba(37,211,102,.15); border-color: rgba(37,211,102,.35); }
.cic { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.cc2.w .cic { background: rgba(37,211,102,.25); }
.cl { font-size: 9px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 2px; }
.cv { font-size: 14px; font-weight: 800; }
.cc2.w .cv { color: #4ade80; }

/* ══ WA FLOTANTE ══ */
.waf {
  position: fixed; bottom: 20px; right: 20px; z-index: 500;
  background: #25D366; color: #fff; border: none; border-radius: 50px;
  padding: 13px 22px; font-size: 14px; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  font-family: var(--fb); transition: transform .2s; text-decoration: none;
}
.waf:hover { transform: scale(1.05); }
.wp { position: absolute; top: -3px; right: -3px; width: 11px; height: 11px; border-radius: 50%; background: var(--rojo); border: 2px solid #fff; animation: wpa 1.8s infinite; }
@keyframes wpa { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.4); } }

/* ══ FOOTER ══ */
.fstrip {
  height: 6px;
  background: linear-gradient(90deg,
    var(--rojo) 0 20%, var(--amarillo) 20% 40%,
    var(--azul) 40% 60%, var(--verde) 60% 80%, var(--naranja) 80% 100%);
}
footer { background: var(--negro); color: #fff; padding: 2.8rem 1.2rem 1.2rem; }
.fin { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.flogo { height: 58px; width: auto; margin-bottom: .8rem; background: #fff; border-radius: 8px; padding: 4px 10px; }
.fbp { font-size: 11px; color: rgba(255,255,255,.38); line-height: 1.7; }
.fc2 h4 { font-size: 10px; font-weight: 900; letter-spacing: 2.4px; text-transform: uppercase; color: var(--amarillo); margin-bottom: .9rem; }
.fc2 a { display: block; font-size: 12px; color: rgba(255,255,255,.42); margin-bottom: .5rem; cursor: pointer; text-decoration: none; transition: color .2s; }
.fc2 a:hover { color: var(--amarillo); }
.fbot { border-top: 1px solid rgba(255,255,255,.08); margin-top: 2rem; padding-top: 1rem; text-align: center; font-size: 10px; color: rgba(255,255,255,.22); max-width: 1280px; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-in { grid-template-columns: 1fr 340px; gap: 2rem; }
  .abgrid, .presgrid { gap: 2rem; }
  .nv-links a { padding: 0 10px; font-size: 12px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET VERTICAL (≤900px)
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
  .nv-links { display: none; }
  .nv-burger { display: flex; }
  .hero-in { grid-template-columns: 1fr; padding: 3rem 1.2rem; }
  .hero-r { display: none; }
  .hero { min-height: 460px; }
  .abgrid, .presgrid { grid-template-columns: 1fr; }
  .abimg img { height: 300px; }
  .fin { grid-template-columns: 1fr 1fr; }
  .presimg { text-align: center; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MÓVIL (≤600px)
   ═══════════════════════════════════════ */
@media (max-width: 600px) {
  .tbar { gap: .8rem; font-size: 11px; padding: 6px .8rem; }
  .tbar span:nth-child(4) { display: none; } /* Oculta horario en móvil pequeño */
  nav { padding: 0 .8rem; }
  .nv { height: 64px; }
  .nv-logo img { height: 46px; }
  .bwa { padding: 9px 12px; font-size: 11px; }
  .bwa .bwa-txt { display: none; } /* Solo ícono en móvil */
  .hero { min-height: 420px; }
  .hero-in { padding: 2.4rem 1rem; }
  .hero h1 { font-size: 2rem; }
  .hsub { font-size: 13.5px; }
  .hctas { flex-direction: column; }
  .bam, .bou { width: 100%; justify-content: center; padding: 14px; }
  .htr { gap: .8rem; }
  section { padding: 2.2rem 1rem; }
  .catgrid { grid-template-columns: 1fr; }
  .pgrid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
  .pimg { height: 110px; font-size: 2.6rem; }
  .pbd { padding: .8rem; }
  .fgrid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ft { padding: 1.1rem; }
  .rgrid { grid-template-columns: 1fr; }
  .cgrid { grid-template-columns: 1fr; }
  .fin { grid-template-columns: 1fr; gap: 1.6rem; }
  .waf { padding: 12px 16px; font-size: 13px; bottom: 16px; right: 16px; }
  .waf .waf-txt { display: none; } /* Solo ícono en móvil */
  .waf { border-radius: 50%; width: 58px; height: 58px; justify-content: center; padding: 0; font-size: 1.5rem; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MÓVIL PEQUEÑO (≤380px)
   ═══════════════════════════════════════ */
@media (max-width: 380px) {
  .pgrid { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.7rem; }
}

/* ═══ Accesibilidad: usuarios que prefieren menos movimiento ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .tick-t { animation: none; }
}
