:root {
  --orange: #fc5c04;
  --blue: #1c54c4;
  --pastel: #fcf4e4;
  --white: #ffffff;
  --text: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
  color: var(--text);
}

/* Layout principal */
.container {
  display: flex;
  width: 100%;
  height: 100vh;
}

/* Panel izquierdo */
.info-panel {
  width: 50%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  position: relative;
  text-align: center;
}

.info-panel img.logo {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.info-panel h1 {
  color: var(--blue);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-panel p {
  font-size: 1.1rem;
  max-width: 420px;
  line-height: 1.6;
}

.assistant-illustration {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 100px;
  opacity: 0.9;
}

.back-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 10px 18px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
}

/* Panel derecho pastel */
.chat-panel {
  width: 50%;
  background: var(--pastel);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Contenedor del chat */
#botpress-chat-wrapper {
  width: 420px;
  height: 600px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

#botpress-chat {
  height: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }

  .info-panel,
  .chat-panel {
    width: 100%;
  }

  .assistant-illustration {
    display: none;
  }

  #botpress-chat-wrapper {
    width: 95%;
    height: 600px;
  }
}