
#elyon-chat-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0a1aff, #00e5ff);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0,229,255,.6);
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

#elyon-chat-btn img {
  width: 32px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px rgba(0,229,255,.4); }
  50% { box-shadow: 0 0 30px rgba(0,229,255,.9); }
  100% { box-shadow: 0 0 10px rgba(0,229,255,.4); }
}

#elyon-chat-box {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 360px;
  height: 520px;
  background: #0b1020;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0,229,255,.4);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
}

#elyon-chat-header {
  background: linear-gradient(135deg, #0a1aff, #00e5ff);
  padding: 15px;
  color: #fff;
  font-weight: bold;
}

#elyon-chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  font-size: 14px;
  color: #e5e7eb;
}

.elyon-msg-user {
  text-align: right;
  margin-bottom: 10px;
}

.elyon-msg-bot {
  text-align: left;
  margin-bottom: 10px;
}

.elyon-bubble {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 80%;
}

.user {
  background: #2563eb;
  color: white;
}

.bot {
  background: #111827;
  border: 1px solid #1f2937;
}

#elyon-chat-input {
  display: flex;
  border-top: 1px solid #1f2937;
}

#elyon-chat-input input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px;
  color: #fff;
  outline: none;
}

#elyon-chat-input button {
  background: #0a1aff;
  border: none;
  color: #fff;
  padding: 12px 18px;
  cursor: pointer;
}

.header{
  background:#061A30;
  padding:25px 20px;
  margin-top: 0;
}

.logo-area{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-texto{
  color:white;
  font-size:22px;
  font-weight:bold;
}

@media(max-width:768px){
  .logo{
    height:35px;
  }

  .logo-texto{
    font-size:16px;
  }


.mobile-menu-btn {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

}

@media (max-width: 992px) {

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #061A30;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }
}
