.ai-assistant-home {
	background: #0C0A29;
}

.ai-assistant-home .content {
	padding: 120px 0 80px;
}

.ai-assistant-home .animation {
	height: 100%;
	display: flex;
	align-items: flex-end;
}

.ai-assistant-home .content .title {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 22px 40px;
	width: fit-content;
	margin-bottom: 23px;
}

.ai-assistant-home .content .title::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 65px;
	padding: 9px;
	background: linear-gradient(90deg, #85DFFF, #3326BC, #8B1A5C, #C87C26, #FFF030, #85DFFF);
	background-size: 200% 100%;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: neonBorder 4s linear infinite;
	filter: drop-shadow(0 0 8px rgba(133, 223, 255, 0.6));
}


.ai-assistant-home .content .title span {
	color: #FFF;
	text-align: center;
	font-family: PlutoBold;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.56px;
}

.ai-assistant-home .animation .chat {
	position: absolute;
	left: 20px;
	right: 50%;
	bottom: 50%;
	width: 288px;
	transform: translateY(50%);
}


.ai-assistant-home .animation .chat .first {
  display: flex; align-items: center; gap: 8px;
  justify-content: space-between; margin-bottom: 8px;
}
.ai-assistant-home .animation .chat .first img { width: 28px; height: 28px; }
.ai-assistant-home .animation .chat .first .text {
	color: #FFF;
	font-family: Roboto;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 122%;
	letter-spacing: 0.177px;
	border-radius: 9px;
	background: #8979FF;
	padding: 7px 0 7px 15px;
	position: relative;
	width: -webkit-fill-available;
}
.ai-assistant-home .animation .chat .first .text::before {
  content: ''; position: absolute; left: -6px; top: 50%;
  transform: translateY(-50%); width: 0; height: 0;
  border-top: 6px solid transparent; border-bottom: 6px solid transparent;
  border-right: 6px solid #8979FF;
}


.ai-assistant-home .animation .chat .second {
  display: flex; align-items: center; gap: 8px;
  justify-content: space-between; margin-bottom: 8px;
}
.ai-assistant-home .animation .chat .second img { width: 28px; height: 28px; }
.ai-assistant-home .animation .chat .second .text {
  color: #FFF;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 122%;
  letter-spacing: 0.177px;
  border-radius: 9px;
  background: #4842C1;
  padding: 7px 20px 7px 15px;
  position: relative;
  width: -webkit-fill-available;
}
.ai-assistant-home .animation .chat .second .text::before {
  content: ''; position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%); width: 0; height: 0;
  border-top: 6px solid transparent; border-bottom: 6px solid transparent;
  border-left: 6px solid #4842C1;
}


.ai-assistant-home .animation .chat .second .content-images {
  border-radius: 9px;
  background: #4842C1;
  padding: 7px;
  display: flex;
  position: relative;
  width: -webkit-fill-available;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.ai-assistant-home .animation .chat .second .content-images img {
	width: auto;
	height: auto;
}

.ai-assistant-home .animation .chat .second .content-images::before {
  content: ''; position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%); width: 0; height: 0;
  border-top: 6px solid transparent; border-bottom: 6px solid transparent;
  border-left: 6px solid #4842C1;
}


/* =============================================
   CHAT ANIMATION
   ============================================= */

/* Por defecto todos los mensajes están ocultos */
.ai-assistant-home .animation .chat .first,
.ai-assistant-home .animation .chat .second {
	opacity: 0;
	transform: translateY(10px);
	transition: none;
}

/* Estado visible: el mensaje aparece con transición */
.ai-assistant-home .animation .chat .first.animate-in,
.ai-assistant-home .animation .chat .second.animate-in {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.45s ease, transform 0.45s ease;
}