.concha-chat-wrapper {
  position: relative;
}

/* Botão flutuante */
.concha-chat-fab {
  position: fixed;
  border: none;
  background: #0A6F63;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99998;
}


.concha-chat-fab img,
.concha-chat-fab span {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Dialog */
.concha-chat-dialog {
  position: fixed;
  right: 20px;
  bottom: 96px; /* 20px acima do botão se o botão tiver ~56px de altura */
  z-index: 99999;
  width: 360px;
  max-width: calc(100% - 40px);
  height: 520px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


.concha-chat-header {
  position: relative;
  padding: 14px 20px;
  color: #fff;
}

.concha-chat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.concha-chat-subtitle {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: 0.9;
}

.concha-chat-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  opacity: 0.8;
}

/* Body */
.concha-chat-body {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
}

.concha-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.concha-chat-message {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
}

.concha-chat-message.bot {
  background: #f3f4f6;
  align-self: flex-start;
}

.concha-chat-message.user {
  background: #00b3a4;
  color: #fff;
  align-self: flex-end;
}

/* Sugestões */
.concha-chat-suggestions {
  margin-top: 16px;
}

.concha-chat-suggestions-title {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}

.concha-chat-suggestions button {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #00b3a4;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 8px;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.concha-chat-suggestions button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Footer */
.concha-chat-footer {
  padding: 10px 12px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 8px;
}

.concha-chat-input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  padding: 8px 12px;
  font-size: 14px;
  outline: none;
}

.concha-chat-input,
.concha-lead-form input,
.concha-lead-code {
  font-size: 16px !important; /* em vez de 13/14 */
}


.concha-chat-input:focus {
  border-color: #00b3a4;
  box-shadow: 0 0 0 2px rgba(0,179,164,0.25);
}

.concha-chat-send {
  width: 40px;
  border-radius: 999px;
  border: none;
  background: #00b3a4;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsivo */
@media (max-width: 600px) {
  .concha-chat-dialog {
    width: calc(100% - 24px);
    height: 70vh;
  }
}
.concha-support-link {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}
.concha-support-link:hover {
  opacity: 0.8;
}
.concha-lead-row {
  display: flex;
  gap: 6px;
}

.concha-lead-code {
  min-width: 90px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  padding: 6px 10px;
  font-size: 13px;
}
button {
    padding: 6px 10px; /* Reduced padding */
    font-size: 14px; /* Smaller font size */
    border-radius: 6px; /* Rounded corners */
    background-color: #0A6F63;!important /* Button color */
    color: white; /* Button text color */
    border: none; /* Remove border */
    cursor: pointer;
    width: fit-content; /* Make button size fit the text */
}

button:hover {
    background-color: #0A6F63 !important; /* Darker blue on hover */
}

button:focus {
    outline: none; /* Remove default focus outline */
}