/* Estilo do Botão Flutuante com Imagem */
#assistant-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px; /* Tamanho fixo para a imagem */
  height: 60px;
  background-image: url('/static/assets/agente.jpeg');
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  border: 3px solid #783606;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

#assistant-button:hover {
  transform: scale(1.1);
}

/* Caixa de Assistente mais elegante */
#assistant-box {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  background: #fff;
  border-radius: 15px;
  z-index: 900;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden; /* Para o header arredondado funcionar */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hidden { display: none; }

#assistant-header {
  background: #783606;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#assistant-content {
  padding: 15px;
  max-height: 400px;
  overflow-y: auto;
}

/* Botões de Opções (Pílulas) */
.btn-opcao {
  width: 100%;
  margin-bottom: 8px;
  padding: 10px;
  border: 1px solid #fad5dc;
  background: #fff;
  color: #783606;
  cursor: pointer;
  border-radius: 20px;
  text-align: left;
  font-size: 14px;
  transition: 0.3s;
}

.btn-opcao:hover {
  background: #fad5dc;
}

.btn-whatsapp {
  background: #25d366 !important;
  color: white !important;
  font-weight: bold;
  border: none !important;
  text-align: center !important;
}

#assistant-response {
  margin-top: 15px;
  padding: 10px;
  background: #f9f9f9;
  border-left: 4px solid #783606;
  font-size: 14px;
}


.btn-destaque {
    background-color: #783606 !important; /* Marrom da sua marca */
    color: white !important;
    font-weight: bold;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-destaque:hover {
    background-color: #4b2c20 !important;
    transform: translateY(-2px);
}