/* ANDREÍNA CHAT — base styles (use only --gold, --gold-bright, --gold-deep, --border, --text-muted) */
.andre-float {
  position: fixed; bottom: 96px; right: 24px; z-index: 9998;  /* arriba de WhatsApp (24+56+16) */
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-bright));
  color: #000; border: none; cursor: pointer;
  box-shadow: 0 8px 28px rgba(212,173,95,0.55);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.andre-float:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(212,173,95,0.7); }
.andre-avatar { 
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 28px; font-weight: 300;
  line-height: 1; letter-spacing: 0;
  color: #000;
}
.andre-tooltip {
  position: absolute; right: 72px; bottom: 8px;
  background: #0a0a0a; color: #cfcfcf;
  padding: 10px 16px; border-radius: 10px;
  border: 1px solid rgba(212,173,95,0.35);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  white-space: nowrap; opacity: 0; pointer-events: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  transition: opacity 0.25s;
}
.andre-tooltip::after {
  content: ''; position: absolute;
  right: -6px; top: 50%; transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px; background: #0a0a0a;
  border-right: 1px solid rgba(212,173,95,0.35);
  border-top: 1px solid rgba(212,173,95,0.35);
}
.andre-float:hover .andre-tooltip { opacity: 1; }

.andre-panel {
  position: fixed; bottom: 168px; right: 24px; z-index: 9998;  /* arriba de andre-float */
  width: 360px; height: 540px; max-height: 70vh;
  background: #14110a; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  display: none; flex-direction: column; overflow: hidden;
}
.andre-panel.open { display: flex; animation: andreIn 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes andreIn { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

.andre-header { padding: 16px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.andre-header-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-bright));
  color: #000; display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: bold;
}
.andre-name { color: #fff; font-size: 13px; font-weight: 500; }
.andre-status { font-size: 10px; color: var(--gold); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.andre-status .dot { width: 6px; height: 6px; border-radius: 50%; background: #25D366; box-shadow: 0 0 8px #25D366; }
.andre-close { margin-left: auto; background: none; border: none; color: var(--text-muted); font-size: 24px; cursor: pointer; padding: 0 4px; transition: color 0.2s; }
.andre-close:hover { color: var(--gold); }

.andre-body { flex: 1; padding: 16px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.andre-msg { padding: 10px 14px; border-radius: 12px; font-size: 13px; line-height: 1.5; max-width: 85%; white-space: pre-wrap; }
.andre-msg.bot { background: rgba(212,173,95,0.08); border: 1px solid var(--border); color: #fff; align-self: flex-start; }
.andre-msg.user { background: var(--gold); color: #000; align-self: flex-end; }
.andre-quick { display: flex; flex-wrap: wrap; gap: 6px; }
.andre-quick button { background: rgba(212,173,95,0.05); border: 1px solid var(--border); color: var(--gold); padding: 7px 12px; font-size: 11px; border-radius: 100px; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.andre-quick button:hover { background: var(--gold); color: #000; }

.andre-input { padding: 12px; border-top: 1px solid var(--border); display: flex; gap: 8px; }
.andre-input input { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: #fff; padding: 10px 12px; border-radius: 8px; font-size: 13px; font-family: inherit; outline: none; }
.andre-input input:focus { border-color: var(--gold); }
.andre-input button { background: var(--gold); color: #000; border: none; width: 40px; border-radius: 8px; font-size: 16px; cursor: pointer; }
