/* ---------- Asistente virtual GIBO Legacy ---------- */
#gibo-launcher {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 95;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #E8B93C;
  color: #0B0B10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(232, 185, 60, 0.45);
  transition: transform 0.2s;
}
#gibo-launcher:hover { transform: scale(1.08); }
#gibo-launcher svg { width: 26px; height: 26px; }
#gibo-launcher .gibo-launcher-label {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: #0B0B10;
  color: #f5f5f5;
  border: 1px solid rgba(232, 185, 60, 0.4);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
#gibo-launcher:hover .gibo-launcher-label { opacity: 1; }

#gibo-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 96;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 600px;
  max-height: calc(100vh - 140px);
  background: #121218;
  border: 1px solid rgba(232, 185, 60, 0.35);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
#gibo-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.gibo-head {
  background: #0B0B10;
  border-bottom: 1px solid rgba(232, 185, 60, 0.25);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gibo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E8B93C;
  color: #0B0B10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  flex-shrink: 0;
}
.gibo-head-info { flex: 1; }
.gibo-head-info strong {
  display: block;
  color: #f5f5f5;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
}
.gibo-online {
  font-size: 12px;
  color: #9be29b;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gibo-online::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  display: inline-block;
}
.gibo-close {
  background: none;
  border: none;
  color: #a0a0ab;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.gibo-close:hover { color: #f5f5f5; }

#gibo-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gibo-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
  word-wrap: break-word;
}
.gibo-msg.bot {
  background: #1e1e28;
  color: #f0f0f0;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.gibo-msg.user {
  background: #E8B93C;
  color: #0B0B10;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
}
.gibo-msg.bot b, .gibo-msg.bot strong { color: #E8B93C; }
.gibo-msg.bot .plan-price { color: #E8B93C; font-weight: 700; }

.gibo-typing {
  align-self: flex-start;
  background: #1e1e28;
  padding: 12px 16px;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 5px;
}
.gibo-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E8B93C;
  animation: gibo-blink 1.2s infinite;
}
.gibo-typing span:nth-child(2) { animation-delay: 0.2s; }
.gibo-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes gibo-blink {
  0%, 60%, 100% { opacity: 0.25; }
  30% { opacity: 1; }
}

.gibo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: flex-start;
  max-width: 95%;
}
.gibo-chip {
  background: transparent;
  border: 1px solid #E8B93C;
  color: #E8B93C;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, color 0.2s;
}
.gibo-chip:hover { background: #E8B93C; color: #0B0B10; }

.gibo-plan-card {
  background: #1e1e28;
  border: 1px solid rgba(232, 185, 60, 0.35);
  border-radius: 12px;
  padding: 12px 14px;
  align-self: stretch;
}
.gibo-plan-card h4 {
  margin: 0 0 2px;
  color: #f5f5f5;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
}
.gibo-plan-card h4 .plan-price { color: #E8B93C; }
.gibo-plan-card p {
  margin: 4px 0 8px;
  font-size: 13px;
  color: #c9c9d4;
}
.gibo-plan-card ul {
  margin: 0 0 10px;
  padding-left: 18px;
  font-size: 13px;
  color: #c9c9d4;
}
.gibo-plan-card ul li { margin-bottom: 3px; }
.gibo-plan-btn {
  width: 100%;
  background: #E8B93C;
  color: #0B0B10;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
}
.gibo-plan-btn:hover { filter: brightness(1.08); }

.gibo-wa-btn {
  display: inline-block;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Sora', sans-serif;
  text-align: center;
  align-self: stretch;
}
.gibo-wa-btn:hover { filter: brightness(1.08); }

.gibo-input-bar {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(232, 185, 60, 0.25);
  background: #0B0B10;
}
#gibo-input {
  flex: 1;
  background: #1e1e28;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 10px 16px;
  color: #f5f5f5;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
}
#gibo-input:focus { border-color: #E8B93C; }
#gibo-send {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #E8B93C;
  color: #0B0B10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#gibo-send svg { width: 18px; height: 18px; }
.gibo-disclaimer {
  text-align: center;
  font-size: 11px;
  color: #77778
...[truncated 1028 chars]