body {
  margin: 0px 5px 0px 5px;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  background-attachment: fixed;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Container principal */
.chat-page {
  background: #a4ffc1;
  min-height: 100vh;
}

.chat-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header com título e steps */
.chat-header {
  background: white;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  max-width: 400px;
  position: relative;
  top: 0;
}


.chat-header-title {
  color: #059669;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}


.steps-static {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 280px;
  margin: 0 auto;
}

.step-circle {
  width: 30px;
  height: 30px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.step-line {
  flex: 1;
  height: 2px;
  background-color: #555;
  margin: 0 6px;
}

/* Conteúdo com iframe */
.chat-content {
  flex: 1;
  background: white;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  margin-top: 8px;
}

.chat-content.chat-slide-up {
  transform: translateY(0);
  opacity: 1;
}

.chat-iframe-container {
  width: 100%;
  height: 100%;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.chat-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.steps-static {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 320px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.step-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.step {
  width: 33px;
  height: 33px;
  border-radius: 9999px;
  background: #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9ca3af;
  transition: all 0.3s ease;
  font-size: 16px;
  z-index: 2;
}

.step svg {
  width: 20px;
  height: 20px;
}

.step.active {
  background: #a7f3d0;
  color: #059669;
}

.step.done {
  background: #059669;
  color: white;
}

.progress-container {
  position: absolute;
  left: 20px;
  right: -33px;
  height: 4px;
  background-color: #e5e7eb;
  z-index: 1;
}

.line-fill {
  height: 4px;
  background-color: #059669;
  width: 0%;
  transition: width 0.4s ease;

}


