/* ══════════════════════════════════════════════
   HIMPULSA — flotantes.css
   Botón flotante de WhatsApp + banner de cookies
   ══════════════════════════════════════════════ */

/* ─── BOTÓN WHATSAPP ─── */
.wa-flotante {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 250;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-flotante:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}
.wa-flotante svg { width: 30px; height: 30px; fill: #fff; }

@media (max-width: 480px) {
  .wa-flotante { bottom: 18px; right: 16px; width: 52px; height: 52px; }
}

/* ─── BANNER DE COOKIES ─── */
.ck-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 380px;
  background: var(--bg2, #111118);
  border: 1px solid rgba(129, 69, 255, 0.35);
  border-radius: 14px;
  padding: 18px 20px;
  z-index: 260;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.ck-banner.visible { transform: translateY(0); opacity: 1; }

.ck-texto {
  font-size: 13px;
  line-height: 1.55;
  color: var(--gris, #c9c9d4);
  margin: 0 0 14px;
}
.ck-texto strong { color: var(--blanco, #fff); }
.ck-texto a { color: var(--morado-light, #A57BFF); text-decoration: underline; }

.ck-botones { display: flex; gap: 10px; }
.ck-btn {
  flex: 1;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease;
}
.ck-btn-aceptar {
  background: var(--morado, #8145FF);
  color: #fff;
  border: none;
}
.ck-btn-aceptar:hover { background: var(--morado-dark, #6030CC); }
.ck-btn-necesarias {
  background: transparent;
  color: var(--gris, #c9c9d4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.ck-btn-necesarias:hover { border-color: rgba(255, 255, 255, 0.45); color: var(--blanco, #fff); }

@media (max-width: 480px) {
  .ck-banner {
    left: 12px;
    right: 12px;
    bottom: 84px; /* deja libre el botón de WhatsApp */
    max-width: none;
  }
}