/*
 * Componente: push flotante lateral para leads de Empresas.
 */

.fe-lead-push {
	position: fixed;
	left: 16px;
	bottom: 16px;
	z-index: 9998;
	width: min(620px, calc(100vw - 32px));
	pointer-events: auto;
	transform: translateX(-120%);
	animation: fe-lead-push-in-left 0.55s ease-out forwards;
}

@keyframes fe-lead-push-in-left {
	from {
		opacity: 0;
		transform: translateX(-120%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.fe-lead-push__control {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.fe-lead-push__card {
	position: relative;
	border-radius: 28px;
	background: #1f2a37;
	box-shadow: 0 20px 60px rgba(0, 13, 89, 0.18);
	padding: 20px 28px 20px 18px;
	color: #fff;
	transition: transform 0.35s ease, opacity 0.35s ease;
	overflow: visible;
}

.fe-lead-push__control:checked + .fe-lead-push__card {
	transform: translateX(calc(-100% + 42px));
	opacity: 0.98;
}

.fe-lead-push__toggle {
	position: absolute;
	top: 50%;
	right: -6px;
	transform: translateY(-50%);
	width: 26px;
	height: 72px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(38, 95, 241, 0.18);
	box-shadow: 0 10px 25px rgba(0, 13, 89, 0.18);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	color: #000d59;
}

.fe-lead-push__toggle-icon::before {
	content: '‹';
	font-family: Poppins, Arial, sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
}

.fe-lead-push__control:checked + .fe-lead-push__card .fe-lead-push__toggle-icon::before {
	content: '›';
}

.fe-lead-push__content {
	display: flex;
	align-items: center;
	gap: 18px;
}

.fe-lead-push__media {
	width: 132px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fe-lead-push__image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.fe-lead-push__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.fe-lead-push__title {
	margin: 0;
	color: #fff;
	font-family: Poppins, Arial, sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
}

.fe-lead-push__text {
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-family: Inter, Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
}

.fe-lead-push__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 8px;
	min-height: 58px;
	padding: 16px 28px;
	border-radius: 999px;
	background: linear-gradient(180deg, #3a67ef 0%, #265ff1 100%);
	color: #fff;
	font-family: Poppins, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
	align-self: flex-start;
}

.fe-lead-push__btn:hover {
	box-shadow: 0 14px 30px rgba(38, 95, 241, 0.32);
	transform: translateY(-1px);
}

.fe-lead-push__btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

@media (max-width: 768px) {
	.fe-lead-push {
		left: 16px;
		right: 16px;
		bottom: 12px;
		width: auto;
	}

	.fe-lead-push__card {
		padding: 18px 22px 18px 16px;
		border-radius: 24px;
	}

	.fe-lead-push__content {
		gap: 14px;
	}

	.fe-lead-push__media {
		width: 88px;
	}

	.fe-lead-push__title {
		font-size: 17px;
		line-height: 24px;
	}

	.fe-lead-push__text {
		font-size: 13px;
		line-height: 20px;
	}

	.fe-lead-push__btn {
		width: 100%;
		font-size: 15px;
	}
}

@media (max-width: 540px) {
	.fe-lead-push__content {
		align-items: stretch;
	}

	.fe-lead-push__media {
		display: none;
	}

	.fe-lead-push__control:checked + .fe-lead-push__card {
		transform: translateX(calc(-100% + 38px));
	}
}