/* ============================================================
   Aire Acondicionado Badalona · Hoja de estilos global
   Paleta: azul #0B5FA5 · naranja #F2790F · tinta #12283A
   Fondo blanco. Mobile-first. WCAG 2.2 AA.
   ============================================================ */

:root {
  --primary: #0B5FA5;
  --primary-dark: #084577;
  --primary-soft: #E8F1F8;
  --accent: #F2790F;
  --accent-dark: #C45F06;
  --ink: #12283A;
  --muted: #4A5B6A;
  --line: #DCE5EC;
  --bg: #FFFFFF;
  --bg-muted: #F4F7FA;
  --dark: #12283A;
  --whatsapp: #25D366;
  --header-h: 68px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(18, 40, 58, .10);
  --font-body: system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  text-wrap: pretty;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-dark); }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(1.9rem, 5.5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.45rem, 3.6vw, 2.1rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2.4vw, 1.3rem); font-weight: 700; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 10000;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.container { max-width: 1200px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.prose { max-width: 70ch; margin-inline: auto; }
.prose > * + * { margin-top: 1.15em; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h);
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.nav-logo:hover { color: var(--primary); }
.nav-logo svg { width: 34px; height: 34px; flex: none; }
.nav-logo .logo-city { color: var(--primary); }
.nav-links {
  display: flex; align-items: center; gap: .25rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  display: block; padding: .55rem .8rem; border-radius: 8px;
  color: var(--ink); text-decoration: none; font-weight: 600;
  font-size: .95rem; white-space: nowrap;
}
.nav-links a:hover { background: var(--primary-soft); color: var(--primary-dark); }
.nav-links a[aria-current="page"] { color: var(--primary); }
.nav-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--primary); color: #fff !important;
  padding: .55rem 1.05rem !important; border-radius: 999px; font-weight: 700;
}
.nav-cta:hover { background: var(--primary-dark) !important; color: #fff !important; }
.nav-cta svg { width: 16px; height: 16px; fill: currentColor; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 10px;
  background: none; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2.5px; width: 100%; border-radius: 2px;
  background: var(--ink); transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--header-h); right: 0; left: auto;
    width: min(340px, 90vw); max-height: calc(100vh - var(--header-h));
    overflow-y: auto; flex-direction: column; align-items: stretch; gap: .15rem;
    background: #fff; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 1rem; margin: 0; border-radius: 0 0 0 18px;
    box-shadow: var(--shadow);
    transform: translateX(105%); transition: transform .28s ease; visibility: hidden;
  }
  .nav-links.is-open { transform: translateX(0); visibility: visible; }
  .nav-links a { padding: .8rem 1rem; font-size: 1.05rem; }
  .nav-cta { justify-content: center; margin-top: .5rem; border-radius: 12px; }
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 19px; height: 19px; fill: currentColor; flex: none; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-whatsapp { background: var(--whatsapp); color: #063; color: #0B3D24; }
.btn-whatsapp:hover { background: #1EBE5A; color: #0B3D24; }
.btn-ghost { color: var(--primary); border-color: var(--primary); background: transparent; }
.btn-ghost:hover { background: var(--primary); color: #fff; }
.section-dark .btn-ghost, .cta-final .btn-ghost, .cta-band .btn-ghost {
  color: #fff; border-color: rgba(255, 255, 255, .45);
}
.section-dark .btn-ghost:hover, .cta-final .btn-ghost:hover, .cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .75); color: #fff;
}
.btn-light { background: #fff; color: var(--primary-dark); }
.btn-light:hover { background: var(--primary-soft); color: var(--primary-dark); }

/* ---------- Migas ---------- */
.breadcrumbs { padding: .9rem 0 0; font-size: .88rem; color: var(--muted); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "›"; margin-right: .35rem; color: var(--line); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ---------- Hero ---------- */
.hero { padding: clamp(2rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem); overflow: hidden; }
.hero-grid { display: grid; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.15fr .85fr; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary); background: var(--primary-soft);
  padding: .35rem .9rem; border-radius: 999px; margin-bottom: 1rem;
}
.lead { font-size: clamp(1.1rem, 2.2vw, 1.3rem); color: var(--muted); }
.entity-def {
  font-size: 1rem; color: var(--muted);
  border-left: 4px solid var(--accent);
  padding: .35rem 0 .35rem 1rem; margin: 1.2rem 0;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.hero-note { font-size: .88rem; color: var(--muted); margin-top: .9rem; display: flex; align-items: center; gap: .45rem; }
.hero-note strong { color: var(--ink); }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.hero-badge {
  position: absolute; bottom: -14px; left: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: .6rem 1rem; box-shadow: var(--shadow);
  font-size: .88rem; font-weight: 700; display: flex; align-items: center; gap: .5rem;
}
.hero-badge .stars { color: var(--accent); letter-spacing: .1em; }

/* ---------- Secciones ---------- */
.section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.section-alt { background: var(--bg-muted); }
.section-dark {
  background: linear-gradient(160deg, var(--dark), #0D3552);
  color: #EAF2F8;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #C9D8E4; }
.section-dark a { color: #8FC4EC; }
.below-fold { content-visibility: auto; contain-intrinsic-size: 800px; }
.section-header { max-width: 760px; margin: 0 auto 2.2rem; text-align: center; }
.section-header .eyebrow { margin-bottom: .8rem; }
.section-header p { color: var(--muted); }
.section-dark .section-header p { color: #C9D8E4; }

/* ---------- Trust bar ---------- */
.trust-bar {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  padding: 1.4rem 0; border-block: 1px solid var(--line);
}
@media (min-width: 800px) { .trust-bar { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: .8rem; font-size: .92rem; }
.trust-item svg { width: 30px; height: 30px; fill: var(--primary); flex: none; }
.trust-item strong { display: block; font-size: 1.15rem; color: var(--ink); }
.trust-item span { color: var(--muted); }

/* ---------- Cards ---------- */
.cards-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; display: flex; flex-direction: column; gap: .6rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { margin: 0; }
.card p { color: var(--muted); margin: 0; font-size: .97rem; flex: 1; }
.card-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center; margin-bottom: .3rem;
}
.card-icon svg { width: 27px; height: 27px; fill: currentColor; }
.card-link { font-weight: 700; font-size: .95rem; text-decoration: none; margin-top: .4rem; }
.card-link::after { content: " →"; }
.card-featured { border: 2px solid var(--accent); position: relative; }
.card-featured .badge {
  position: absolute; top: -13px; right: 16px;
}
.badge {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .28rem .7rem; border-radius: 999px;
}

/* ---------- Ofertas ---------- */
.ofertas-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.oferta-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.oferta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.oferta-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.oferta-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.oferta-card__cap { font-size: .82rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .08em; }
.oferta-card__body h3 { margin: 0; font-size: 1.15rem; }
.oferta-card__body p { color: var(--muted); font-size: .95rem; margin: 0; flex: 1; }
.oferta-card__price { font-weight: 800; color: var(--ink); font-size: 1.05rem; }
.oferta-card__price small { font-weight: 600; color: var(--muted); }
.skeleton {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  min-height: 320px; overflow: hidden; position: relative;
}
.skeleton::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(18,40,58,.06), transparent);
  animation: pulse 1.4s infinite;
}
@keyframes pulse { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ---------- Listas / TLDR / tablas ---------- */
.check-list { list-style: none; margin: 1em 0; padding: 0; display: grid; gap: .55rem; }
.check-list li { padding-left: 1.7rem; position: relative; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent-dark); font-weight: 800;
}
.tldr {
  background: var(--bg-muted); border-left: 4px solid var(--primary);
  padding: 14px 18px; margin: 16px 0; border-radius: 6px;
}
.tldr-label {
  font-weight: 700; letter-spacing: .06em; font-size: .8rem;
  text-transform: uppercase; color: var(--primary); margin: 0 0 6px;
}
.tldr ul { margin: 0; padding-left: 20px; }
.tldr li + li { margin-top: .3rem; }
.table-wrap { overflow-x: auto; margin: 1.4rem 0; }
.vs-table, .price-table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 560px; }
.vs-table th, .vs-table td, .price-table th, .price-table td {
  border: 1px solid var(--line); padding: .75rem .9rem; text-align: left; vertical-align: top;
}
.vs-table thead th, .price-table thead th {
  background: var(--primary); color: #fff; font-weight: 700;
}
.vs-table tbody tr:nth-child(even), .price-table tbody tr:nth-child(even) { background: var(--bg-muted); }
.vs-table td:first-child { font-weight: 700; }

/* ---------- Equipo / Sobre nosotros ---------- */
.team-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 860px) { .team-grid { grid-template-columns: 340px 1fr; } }
.team-photo img { border-radius: var(--radius); box-shadow: var(--shadow); }
.team-photo figcaption { font-size: .88rem; color: var(--muted); margin-top: .6rem; text-align: center; }

/* ---------- Reseñas ---------- */
.review-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem;
}
.review-card .stars { color: var(--accent); font-size: 1rem; letter-spacing: .15em; }
.review-card blockquote { margin: 0; font-size: .97rem; color: var(--muted); flex: 1; }
.review-card footer { font-size: .9rem; font-weight: 700; }
.review-card footer span { display: block; font-weight: 500; color: var(--muted); font-size: .84rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 0; overflow: hidden;
}
.faq details[open] { border-color: var(--primary); }
.faq summary {
  cursor: pointer; font-weight: 700; padding: 1.05rem 1.3rem;
  list-style: none; position: relative; padding-right: 3rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; color: var(--primary);
}
.faq details[open] summary::after { content: "–"; }
.faq .faq-a { padding: 0 1.3rem 1.2rem; color: var(--muted); }
.faq .faq-a p { margin: 0 0 .7em; }
.faq .faq-a p:last-child { margin-bottom: 0; }

/* ---------- CTA final ---------- */
.cta-final {
  background: linear-gradient(150deg, var(--primary-dark), var(--primary));
  color: #fff; border-radius: clamp(0px, 2vw, 24px);
  padding: clamp(2.2rem, 5vw, 3.8rem) clamp(1.4rem, 4vw, 3rem);
  text-align: center;
}
.cta-final h2 { color: #fff; }
.cta-final p { color: #D8E8F5; max-width: 620px; margin-inline: auto; }
.cta-final .hero-ctas { justify-content: center; }
.cta-final .cta-phone { color: #fff; font-size: 1.35rem; font-weight: 800; text-decoration: none; }
.cta-final .cta-phone:hover { color: #FFD9AE; }

/* ---------- Zonas ---------- */
.zone-pills { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-top: 1.2rem; }
.pill {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .42rem 1rem; font-size: .9rem; font-weight: 600; color: var(--muted);
}
.update-date { text-align: center; color: var(--muted); font-size: .88rem; padding: 1.5rem 0 0; }

/* ---------- Blog ---------- */
.page-hero { padding: clamp(1.8rem, 5vw, 3.2rem) 0 clamp(1.5rem, 4vw, 2.5rem); }
.page-hero .lead { max-width: 720px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.blog-card {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: #fff; transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card a { text-decoration: none; color: inherit; display: block; height: 100%; }
.blog-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.blog-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; }
.blog-card__category {
  font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--primary);
}
.blog-card__title { font-size: 1.18rem; margin: 0; }
.blog-card__excerpt { color: var(--muted); font-size: .95rem; margin: 0; }
.blog-card__meta { display: flex; gap: 1rem; font-size: .84rem; color: var(--muted); margin-top: .3rem; }
.blog-empty {
  text-align: center; color: var(--muted); padding: 3rem 1rem;
  border: 1px dashed var(--line); border-radius: var(--radius); grid-column: 1 / -1;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--dark), #0B1B29);
  color: #B8C4CE; margin-top: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--primary), var(--accent)) 1;
  font-size: .95rem;
}
.footer-grid {
  display: grid; gap: 2.2rem; padding: clamp(2.5rem, 5vw, 3.8rem) 0 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.1fr 1fr; } }
.footer-col h2 {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .1em;
  color: #fff; margin-bottom: 1rem; font-weight: 700;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-col a { color: #B8C4CE; text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-brand { font-weight: 800; font-size: 1.15rem; color: #fff; display: flex; align-items: center; gap: .55rem; margin-bottom: .8rem; }
.footer-brand svg { width: 30px; height: 30px; }
.footer-col address { font-style: normal; display: grid; gap: .55rem; }
.footer-col address a { display: inline-flex; align-items: center; gap: .5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 1.3rem 0; display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between; font-size: .86rem;
}
.social-links { display: flex; gap: .6rem; list-style: none; margin: 0; padding: 0; }
.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 10px; color: #B8C4CE;
}
.social-links a:hover { border-color: var(--accent); color: #fff; background: rgba(242, 121, 15, .15); }
.social-links svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- WhatsApp flotante ---------- */
@keyframes tmPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}
.tm-whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  animation: tmPulse 2s infinite;
  transition: transform .2s ease;
}
.tm-whatsapp-float:hover { transform: scale(1.1); }
.tm-whatsapp-float:focus-visible { outline: 3px solid #25D366; outline-offset: 3px; }
.tm-whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
/* Cuando el banner de cookies está visible, sube el botón para no tapar "Rechazar" */
body:has(.cookie-banner.is-visible) .tm-whatsapp-float { bottom: 116px; }

/* ---------- Banner de cookies ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999998;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(18, 40, 58, .12);
  padding: 1.1rem clamp(1rem, 4vw, 2rem);
  display: none; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { margin: 0; font-size: .9rem; color: var(--muted); flex: 1 1 320px; }
.cookie-banner .cookie-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie-banner button {
  font: inherit; font-weight: 700; font-size: .9rem; cursor: pointer;
  padding: .6rem 1.3rem; border-radius: 999px; border: 2px solid var(--primary);
}
.cookie-accept { background: var(--primary); color: #fff; }
.cookie-accept:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.cookie-reject { background: #fff; color: var(--primary); }
.cookie-reject:hover { background: var(--primary-soft); }

/* ---------- Animaciones de entrada ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .tm-whatsapp-float { animation: none; }
}
