/* ===================================================
   SERVICIO LIMPIEZA INCENDIOS — multifranquicias.com
   CSS Custom Properties + Base Styles
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Brand Palette */
  --fire:    #E8290B;      /* rojo fuego — CTA principal */
  --ember:   #FF6B2C;      /* naranja — acentos urgencia */
  --blue:    #1B3F6E;      /* azul marino — confianza/profesional */
  --ice:     #EAF2FB;      /* azul hielo — fondos secundarios */
  --pearl:   #F7F8FA;      /* perla — fondo base */
  --white:   #FFFFFF;
  --charcoal:#1A1D23;      /* carbón — texto principal */
  --slate:   #3E4652;      /* pizarra — texto secundario */
  --mist:    #8C96A5;      /* gris niebla — texto terciario */
  --border:  #DDE3EE;      /* borde sutil */
  --green:   #0F9D58;      /* verde éxito — "seguro cubre" */
  --gold:    #F4B400;      /* dorado — badges especiales */

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(27,63,110,.08);
  --shadow-md:  0 6px 24px rgba(27,63,110,.12);
  --shadow-lg:  0 16px 48px rgba(27,63,110,.16);
  --shadow-cta: 0 4px 20px rgba(232,41,11,.35);

  /* Spacing */
  --max-width: 1200px;
  --radius:    10px;
  --radius-lg: 18px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--pearl);
  color: var(--charcoal);
  line-height: 1.65;
  padding-bottom: 60px; /* mobile bar */
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* TYPOGRAPHY */
h1,h2,h3,h4 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.1;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; }

/* ===== TOPBAR URGENCIAS ===== */
.topbar {
  position: sticky; top: 0; z-index: 999;
  background: var(--fire);
  color: #fff;
  text-align: center;
  padding: 9px 20px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
}
.topbar a {
  color: #fff;
  font-weight: 800;
  background: rgba(255,255,255,.15);
  padding: 3px 12px;
  border-radius: 50px;
  transition: background .2s;
}
.topbar a:hover { background: rgba(255,255,255,.3); }
.topbar .dot { opacity: .5; }

/* ===== HEADER / NAV ===== */
header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky; top: 38px; z-index: 990;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo img { height: 44px; width: auto; }
nav.nav-links { display: flex; gap: 6px; align-items: center; }
nav.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--slate);
  padding: 7px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
nav.nav-links a:hover { color: var(--blue); background: var(--ice); }
.nav-cta {
  background: var(--fire) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 9px 20px !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-cta);
  transition: transform .15s, box-shadow .15s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(232,41,11,.45) !important; }

/* Hamburger */
.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal);
  transition: transform .3s, opacity .3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
#mobileMenu {
  display: none;
  position: fixed; inset: 0;
  background: rgba(26,29,35,.97);
  z-index: 980;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  backdrop-filter: blur(10px);
}
#mobileMenu.open { display: flex; }
#mobileMenu a {
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .05em;
  transition: color .2s;
}
#mobileMenu a:hover { color: var(--ember); }
.mobile-menu-ctas { display: flex; gap: 12px; margin-top: 20px; }
.mobile-menu-ctas a {
  font-size: 1rem !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700 !important;
}
.mobile-menu-ctas .m-call { background: var(--fire); }
.mobile-menu-ctas .m-wa   { background: #25D366; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, #0e2440 60%, #1a1d23 100%);
  color: #fff;
  padding: 72px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 48px;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,41,11,.25);
  border: 1px solid rgba(232,41,11,.5);
  color: #FF8A70;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-badge::before { content: '●'; color: var(--fire); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 { color: #fff; margin-bottom: 16px; }
.hero h1 span { color: var(--ember); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.75);
  margin-bottom: 32px; max-width: 520px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 28px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.65);
  font-weight: 500;
}
.trust-item .icon { font-size: 1rem; }

/* Hero Form Card */
.hero-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.hero-form h3 {
  color: var(--charcoal); margin-bottom: 6px; font-size: 1.4rem;
}
.hero-form p { color: var(--mist); font-size: .85rem; margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: .78rem; font-weight: 600;
  color: var(--slate); margin-bottom: 5px; text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input, .form-group select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem; color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  background: var(--pearl);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,63,110,.12);
  background: #fff;
}
.form-btn {
  width: 100%; padding: 15px;
  background: var(--fire);
  color: #fff; border: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 800; letter-spacing: .08em;
  border-radius: var(--radius);
  box-shadow: var(--shadow-cta);
  transition: transform .15s, box-shadow .15s;
  text-transform: uppercase;
}
.form-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,41,11,.5); }
.form-note { font-size: .75rem; color: var(--mist); text-align: center; margin-top: 10px; }
.form-success {
  display: none;
  background: #f0faf4; border: 1px solid #0F9D58;
  border-radius: var(--radius); padding: 16px;
  text-align: center; color: var(--green);
  font-weight: 600; margin-top: 12px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.trust-bar-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 32px;
}
.trust-seal {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 600; color: var(--slate);
}
.trust-seal .seal-icon { font-size: 1.4rem; }
.trust-seal strong { color: var(--charcoal); display: block; font-size: .95rem; }

/* ===== ALERTA 72H ===== */
.alert-72 {
  background: linear-gradient(135deg, #7D1A00, #B32200);
  color: #fff; text-align: center;
  padding: 36px 24px;
}
.alert-72 h2 { color: #fff; margin-bottom: 10px; }
.alert-72 p  { color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto 20px; }
.alert-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--fire);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 800; letter-spacing: .06em;
  padding: 13px 32px; border-radius: 50px;
  transition: transform .15s, box-shadow .15s;
  text-transform: uppercase;
}
.alert-btn:hover { transform: scale(1.03); box-shadow: 0 6px 24px rgba(0,0,0,.3); }

/* ===== SECTIONS BASE ===== */
section { padding: 72px 24px; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--fire);
  margin-bottom: 10px; display: block;
}
.section-title { color: var(--charcoal); margin-bottom: 14px; }
.section-sub { color: var(--slate); max-width: 600px; margin-bottom: 48px; font-size: 1.05rem; }

/* ===== SERVICES GRID ===== */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--pearl);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.service-icon { font-size: 2rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--charcoal); }
.service-card p  { font-size: .88rem; color: var(--slate); line-height: 1.6; }

/* ===== BEFORE/AFTER ===== */
.before-after { background: var(--ice); }
.ba-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.ba-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-img-wrap { position: relative; }
.ba-img-wrap img { width: 100%; height: 180px; object-fit: cover; }
.ba-label {
  position: absolute; top: 8px; left: 8px;
  background: rgba(0,0,0,.7); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  padding: 3px 10px; border-radius: 50px; text-transform: uppercase;
}
.ba-caption { padding: 16px; }
.ba-caption h4 { font-size: 1rem; margin-bottom: 4px; }
.ba-caption p  { font-size: .82rem; color: var(--slate); }

/* ===== INSURANCE SECTION ===== */
.insurance { background: var(--white); }
.insurance-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.insurance-text h2 { margin-bottom: 16px; }
.insurance-text p  { color: var(--slate); margin-bottom: 20px; }
.insurance-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.ins-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; background: var(--pearl);
  border-radius: var(--radius); border-left: 4px solid var(--green);
}
.ins-item .ins-icon { font-size: 1.2rem; flex-shrink: 0; }
.ins-item p { font-size: .88rem; color: var(--slate); margin: 0; }
.ins-item strong { color: var(--charcoal); }
.insurance-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.insurance-img img { width: 100%; height: 380px; object-fit: cover; }

/* ===== PROCESS ===== */
.process { background: var(--charcoal); color: #fff; }
.process .section-title { color: #fff; }
.process .section-sub   { color: rgba(255,255,255,.6); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px; counter-reset: steps;
}
.step {
  position: relative; padding-top: 56px;
  counter-increment: steps;
}
.step::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem; font-weight: 900;
  color: rgba(255,255,255,.08); line-height: 1;
}
.step-icon { font-size: 1.8rem; margin-bottom: 12px; }
.step h4   { font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.step p    { font-size: .85rem; color: rgba(255,255,255,.55); }

/* ===== ZONES ===== */
.zones { background: var(--white); }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.zone-card {
  background: var(--pearl);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: .88rem; font-weight: 600;
  color: var(--slate);
  transition: all .2s;
  display: flex; align-items: center; gap: 8px;
}
.zone-card:hover {
  background: var(--ice); border-color: var(--blue);
  color: var(--blue); transform: translateY(-2px);
}
.zone-card::before { content: '📍'; font-size: 1rem; }

/* ===== FAQ ===== */
.faq { background: var(--ice); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
details {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
summary {
  padding: 18px 20px;
  font-weight: 600; font-size: .95rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--charcoal);
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--mist);
  transition: transform .3s;
}
details[open] summary::after { transform: rotate(45deg); }
details[open] { border-color: var(--blue); }
.faq-body { padding: 0 20px 18px; color: var(--slate); font-size: .92rem; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; }
.testimonial-card {
  background: var(--pearl); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.testimonial-card blockquote {
  font-size: .9rem; color: var(--slate); font-style: italic;
  margin-bottom: 14px; line-height: 1.6;
}
.testimonial-author { font-weight: 700; color: var(--charcoal); font-size: .85rem; }
.testimonial-role   { font-size: .78rem; color: var(--mist); }

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, var(--blue), #0e2440);
  color: #fff; text-align: center; padding: 80px 24px;
}
.cta-final h2 { color: #fff; margin-bottom: 16px; }
.cta-final p  { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto 32px; }
.cta-buttons  { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--fire); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 800; letter-spacing: .06em;
  padding: 15px 36px; border-radius: 50px;
  box-shadow: var(--shadow-cta);
  transition: transform .15s, box-shadow .15s;
  text-transform: uppercase;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,41,11,.55); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 800; letter-spacing: .06em;
  padding: 15px 36px; border-radius: 50px;
  transition: transform .15s, box-shadow .15s;
  text-transform: uppercase;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.4); }

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal); color: rgba(255,255,255,.6);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  color: #fff; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: .05em;
}
footer ul { display: flex; flex-direction: column; gap: 8px; }
footer ul li a { font-size: .85rem; transition: color .2s; }
footer ul li a:hover { color: #fff; }
.footer-logo img { height: 36px; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-desc { font-size: .85rem; line-height: 1.65; margin-bottom: 16px; max-width: 280px; }
.footer-contact a {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; color: #fff; font-weight: 600; margin-bottom: 8px;
  transition: color .2s;
}
.footer-contact a:hover { color: var(--ember); }
.footer-bottom {
  max-width: var(--max-width); margin: 28px auto 0;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; flex-wrap: wrap; gap: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: #fff; }

/* ===== FLOAT BUTTONS (Desktop) ===== */
.float-buttons {
  position: fixed; bottom: 28px; right: 24px;
  display: flex; flex-direction: column; gap: 12px; z-index: 800;
}
.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-call { background: var(--fire); }
.float-wa   { background: #25D366; }

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  grid-template-columns: 1fr 1fr;
  height: 58px;
}
.mobile-cta-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: #fff; font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase;
}
.mobile-cta-call { background: var(--fire); }
.mobile-cta-wa   { background: #25D366; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 70px; left: 16px; right: 16px; z-index: 850;
  background: var(--charcoal); color: rgba(255,255,255,.8);
  border-radius: var(--radius); padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-lg); flex-wrap: wrap;
  font-size: .82rem;
}
#cookie-banner.hidden { display: none !important; }
#cookie-banner a { color: var(--ember); text-decoration: underline; }
#cookieOk {
  background: var(--fire); color: #fff;
  border: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem; font-weight: 800;
  padding: 8px 20px; border-radius: 6px;
  white-space: nowrap; flex-shrink: 0;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 12px 24px;
  background: var(--white); border-bottom: 1px solid var(--border);
  font-size: .78rem; color: var(--mist);
}
.breadcrumb-inner { max-width: var(--max-width); margin: 0 auto; }
.breadcrumb a { color: var(--blue); }
.breadcrumb span { margin: 0 6px; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.green-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #e8f7ef; color: var(--green);
  font-size: .78rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  border: 1px solid rgba(15,157,88,.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .insurance-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  nav.nav-links { display: none; }
  .menu-toggle { display: flex; }
  .float-buttons { display: none; }
  .mobile-cta-bar { display: grid; }
  body { padding-bottom: 58px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 48px 20px 56px; }
  section { padding: 52px 20px; }
}

@media (max-width: 480px) {
  .trust-bar-inner { gap: 20px; }
  .zones-grid { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
}
