header {
  text-align: center;
  padding: 80px 20px 40px;
}

.logo img {
  width: 120px;
  filter: drop-shadow(0 0 15px #00baff);
  animation: flotar 3s ease-in-out infinite;
}

@keyframes flotar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

h1 {
  font-size: 2.5em;
  margin-top: 30px;
}

.chat-box {
  margin: 30px auto 10px;
  max-width: 500px;
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 12px;
  backdrop-filter: blur(6px);
}

.chat-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.1em;
  padding: 10px;
}

.chat-box button {
  background: #00aaff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: white;
  font-size: 1.3em;
  cursor: pointer;
}

.benefits-inline {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.benefits-inline span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
}

.benefits-inline i {
  color: white;
}
