/* * Call to action */
.chatbot-link--container {
	margin: 3rem 0;
	width: 100%;
	padding: 2rem 1rem;
	background-color: #01376c;
}

.chatbot-link--container h3 {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	color: #ffffff;
}

.chatbot-link {
	padding: 0.8rem 1.3rem;
	position: relative;
	background: #ffffff;
	color: #371bd7;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	font-size: 1.1rem;
	overflow: hidden;
	cursor: pointer;
	z-index: 1;

	display: inline-block;
}

.chatbot-link:hover {
	color: #fff;
}

.chatbot-link:focus,
.chatbot-link:active {
	outline: none;
}

.chatbot-link::after {
	content: "";
	background-image: linear-gradient(144deg, #371bd7, #4832dd 25%, #00ddeb);
	position: absolute;
	z-index: -1;
	padding: 0.5rem 1.1rem;
	display: block;
	top: 0;
	bottom: 0;
	left: 100%;
	right: -100%;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.chatbot-link:hover::after {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

/* * Burbujas */
.contenedor-burbujas {
	position: fixed;
	bottom: 0.9rem;
	right: 0.9rem;
	z-index: 100;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
}

#return-to-top {
	display: none;
	z-index: 50;
}

#return-to-top i {
	color: #fff;
	margin: 0;
	position: relative;
	left: 16.5px;
	top: 16.5px;
	font-size: 26px;
	transition: all 0.3s ease;
}

#return-to-top:hover i {
	color: #371bd7;
	top: 5px;
	z-index: 51;
}

.boton-burbuja {
	position: relative;
	width: 56px;
	height: 56px;
	background-image: linear-gradient(144deg, #371bd7, #4832dd 25%, #00ddeb);
	border: 0;
	border-radius: 50px;
	box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
	cursor: pointer;
	overflow: hidden;
	outline: none;

	display: flex;
	align-items: center;
	justify-content: center;
}

.boton-burbuja:after {
	content: "";
	background: #ffffff;
	position: absolute;
	z-index: -1;
	display: block;
	border: 0;
	outline: none;
	border-radius: 50%;
	left: -50%;
	right: -50%;
	top: -150%;
	bottom: -150%;
	line-height: 8.34em;
	transform: scale(0, 0);
	transition: all 0.3s ease;
}

.boton-burbuja:focus,
.boton-burbuja:active {
	outline: none;
}

.boton-burbuja:hover:after {
	transform: scale(1, 1);
	transition: all 0.3s ease-out;
	z-index: 1;
}

.chatbot-icon {
	width: 45px;
	z-index: 2;
}

.icono-mail {
	font-size: 25px;
	color: #fff;
	z-index: 2;
	transition: all 0.3s ease;
}

#mail-burbuja:hover .icono-mail {
	color: #371bd7;
}

.animation-pulse {
	animation: pulse 1s;
	box-shadow: 0 0 0 1.5em transparent;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 #4832dd;
	}
}

@media (max-width: 768px) {
	.chatbot-link--container h3 {
		font-size: 1.3rem;
	}
}
