:root {
  --primary-color: #2AC8D3;
  --secondary-color: #8882EE;
  --accent-color: #8B5BFA;
  --text-color: #000000;
  --white: #FFFFFF;
  --chat-bg: url('https://digitalyze.com.br/wp-content/uploads/2025/01/about-bg.webp');
  --input-bg: rgba(255, 255, 255, 0.15);
  --button-bg: var(--primary-color);
  --button-hover-bg: var(--accent-color);
  --border-color: #2AC8D3;
  --border-radius: 16px;
  --shadow-effect: 0px 10px 30px rgba(42, 200, 211, 0.5), 0px 0px 15px rgba(136, 130, 238, 0.4);
}

/* ===== ESTRUTURA GERAL DO FORMULÁRIO ===== */
.section-form-chat {
  padding: 80px 20px;
  background: transparent;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* ===== TÍTULO E SUBTÍTULO ===== */
.section-form-chat .heading2 {
  font-size: 64px;
  font-weight: 600;
  line-height: 72px;
  text-transform: capitalize;
  text-align: center;
  color: var(--text-color);
  margin-bottom: 24px;
}

.section-form-chat .heading2 span {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-form-chat .body2 {
  font-size: 20px;
  line-height: 30px;
  color: var(--text-color);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* ===== CONTAINER DO CHAT ===== */
.form-chat-block {
  width: 100%;
}

.form-content {
  width: 100%;
  max-width: 900px;
  max-height: 80vh;
  margin: 0 auto;
  box-shadow: var(--shadow-effect);
  background: var(--white);
  border-radius: var(--border-radius);
  border: 3px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.form-content .content {
  background-image: var(--chat-bg);
  background-size: cover;
  background-position: center;
  padding: 30px;
  overflow-y: auto;
  height: 100%;
}

/* ===== ETAPAS ===== */
.step {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

/* ===== PERGUNTAS DO BOT ===== */
.bot-question {
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

/* ===== CONTAINER DE BOTÕES ===== */
.options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ===== BOTÕES INTERATIVOS ===== */
.option-btn {
  background: var(--primary-color);
  color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: 600;
  font-size: 14px;
  min-width: 180px;
  text-align: center;
}

.option-btn:hover {
  background: var(--button-hover-bg);
}

/* ===== INPUTS E TEXTAREAS ===== */
input[type="text"],
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-size: 14px;
  outline: none;
  margin-bottom: 12px;
  resize: vertical;
  background: #fff;
}

/* ===== LISTA DE PEDIDOS ENCONTRADOS ===== */
#lista-pedidos-encontrados li {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: 8px;
  margin: 6px;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 240px;
  text-align: left;
  list-style: none;
}

#lista-pedidos-encontrados li:hover {
  background: var(--primary-color);
  color: #fff;
}

/* ===== SCROLL INTERNO DO CHAT ===== */
.content::-webkit-scrollbar {
  width: 6px;
}

.content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.content::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .section-form-chat .heading2 {
    font-size: 36px;
    line-height: 44px;
  }

  .bot-question {
    font-size: 14px;
  }

  .option-btn {
    font-size: 12px;
    padding: 10px 14px;
    min-width: 140px;
  }

  input[type="text"],
  textarea {
    font-size: 14px;
  }

  .form-content {
    max-height: 90vh;
  }
}

/* ===== LISTA DE PEDIDOS ENCONTRADOS NA CONSULTA ===== */
#consulta-lista-pedidos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

#consulta-lista-pedidos li {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  min-width: 180px;
  text-align: center;
  list-style: none;
}

#consulta-lista-pedidos li:hover {
  background: var(--primary-color);
  color: var(--white);
}