#hb-float-wrap{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

#hb-label{
  background: rgba(18,18,26,.92);
  color: #fff;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  white-space: nowrap;
  order: 1;
  flex-shrink: 0;
}

#hb-float-btn{
  width: 66px;
  height: 66px;
  min-width: 66px;
  min-height: 66px;
  border: none;
  border-radius: 50%;
  background: var(--hb-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
  position: relative;
  padding: 0;
  overflow: visible;
  order: 2;
  flex-shrink: 0;
  isolation: isolate;
}

#hb-float-btn::before,
#hb-float-btn::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

#hb-float-btn::before{
  animation: hbPulse 2.2s infinite;
  box-shadow: 0 0 0 0 rgba(235,108,0,.45);
}

#hb-float-btn::after{
  animation: hbPulse 2.2s infinite;
  animation-delay: 1.1s;
  box-shadow: 0 0 0 0 rgba(235,108,0,.35);
}

@keyframes hbPulse{
  0%{
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(235,108,0,.5);
  }
  70%{
    transform: scale(1.2);
    opacity: 0;
    box-shadow: 0 0 0 20px rgba(235,108,0,0);
  }
  100%{
    transform: scale(1.2);
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(235,108,0,0);
  }
}

.hb-float-svg,
.hb-float-emoji{
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hb-float-svg{
  width: 30px;
  height: 30px;
}

.hb-float-svg svg{
  width: 65px !important;
  height: 60px !important;
  display: block;
  overflow: visible;
}

.hb-float-emoji{
  font-size: 28px;
  line-height: 1;
}

#hb-panel{
  width: 360px;
  max-width: calc(100vw - 24px);
  height: 540px;
  max-height: calc(100vh - 120px);
  background: var(--hb-panel-bg);
  border-radius: 24px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

#hb-panel.is-open{
  display: flex;
}

#hb-header{
  background: var(--hb-header-bg);
  color: var(--hb-text);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.hb-brand{
  font-size: 15px;
  font-weight: 700;
  color: var(--hb-text);
}

#hb-close{
  background: transparent;
  color: #fff;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

#hb-float-wrap.is-open #hb-label,
#hb-float-wrap.is-open #hb-float-btn{
  display: none;
}

#hb-float-wrap.is-open{
  right: 20px;
  bottom: 20px;
}

#hb-float-wrap.is-open #hb-panel{
  display: flex;
}

@media (max-width: 767px){
  #hb-float-wrap{
    right: 14px;
    bottom: 14px;
  }

  #hb-panel{
    width: calc(100vw - 16px);
    height: 70vh;
  }

  #hb-label{
    display: none;
  }

  #hb-float-wrap.is-open{
    right: 8px;
    bottom: 8px;
  }
}

.hb-brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.hb-logo{
  width:28px;
  height:28px;
  object-fit:contain;
  border-radius:6px;
}

#hb-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hb-brand{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 🔥 LOGO */
.hb-brand img{
  height: 34px;
  width: auto;
  display: block;
}

/* opcional más pro */
.hb-brand span{
  font-size: 15px;
  font-weight: 600;
}