/* ========================================
   KEEPY · CSS de bloques custom (módulos Code de Divi)
   Aquí irá el CSS validado de los bloques que NO se
   reconstruyen con módulos nativos: calculadora de espacio,
   carruseles mobile, sticky-bar, fab WhatsApp…
   Se irá poblando bloque a bloque durante el traslado.
   ======================================== */

/* --- Botón flotante WhatsApp (compartido en todas las páginas) --- */
.fab-wa {
  position: fixed;
  right: 16px;
  bottom: 84px; /* deja hueco a la sticky-bar en mobile */
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transition: transform .15s;
}
.fab-wa:hover { transform: scale(1.06); }
.fab-wa svg { width: 30px; height: 30px; fill: #fff; }
@media (min-width: 981px) {
  .fab-wa { bottom: 24px; }
}

/* --- Sticky bar de CTAs (solo mobile) --- */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 89;
  display: flex;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 12px rgba(0,0,0,.08);
}
.sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
}
.sticky-bar .sb-tel { background: var(--dark); color: #fff; }
.sticky-bar .sb-cta { background: var(--brand); color: var(--dark); }
@media (min-width: 981px) {
  .sticky-bar { display: none; }
}
