.bot-page-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 24px;
}

.phone-mockup {
  width: 100%;
  max-width: 440px;
  height: 840px;
  background: #0b141a;
  border-radius: 40px;
  border: 8px solid #222e35;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 230, 153, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* Phone Top Bar */
.phone-notch {
  height: 24px;
  background: #222e35;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 140px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.chat-header {
  background: #202c33;
  padding: 36px 16px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #052014;
}

.chat-info {
  flex: 1;
}

.chat-name {
  font-weight: 700;
  font-size: 1rem;
  color: #e9edef;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-status {
  font-size: 0.78rem;
  color: var(--green-primary);
}

/* Chat Messages Area */
.chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #0b141a;
  background-image: radial-gradient(#182229 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}

.message-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.45;
  position: relative;
  word-wrap: break-word;
}

.msg-bot {
  align-self: flex-start;
  background: #202c33;
  color: #d1d7db;
  border-top-left-radius: 2px;
}

.msg-user {
  align-self: flex-end;
  background: #005c4b;
  color: #e9edef;
  border-top-right-radius: 2px;
}

.msg-time {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: right;
  margin-top: 4px;
}

/* Pix Card in Chat */
.pix-card {
  background: #111b21;
  border: 1px solid rgba(0, 230, 153, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-top: 8px;
}

.pix-qr {
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 8px;
  margin: 10px auto;
  display: block;
  padding: 6px;
}

.pix-code-box {
  background: rgba(0, 0, 0, 0.5);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 8px;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--green-primary);
  word-break: break-all;
  margin-bottom: 8px;
}

/* Quick Action Chips */
.quick-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 8px 16px;
  background: #111b21;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-chip {
  background: #202c33;
  color: #e9edef;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 16px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.15s ease;
}

.quick-chip:hover {
  background: #005c4b;
  border-color: var(--green-primary);
}

/* Chat Input Bar */
.chat-footer {
  background: #202c33;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-input {
  flex: 1;
  background: #2a3942;
  border: none;
  border-radius: 20px;
  padding: 10px 16px;
  color: #fff;
  font-size: 0.92rem;
  outline: none;
}

.btn-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #00a884;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s;
}

.btn-send:hover {
  transform: scale(1.08);
}
