.ddl-ml-floating,
.ddl-ml-shortcode,
.ddl-ml-shortcode * {
	box-sizing: border-box;
}

.ddl-ml-icon {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
}

.ddl-ml-floating {
	--ddl-ml-bg: #ffe600;
	--ddl-ml-text: #2d3277;
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 99990;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	max-width: calc(100vw - 32px);
	min-height: 50px;
	padding: 13px 18px;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 999px;
	background: var(--ddl-ml-bg);
	box-shadow: 0 7px 22px rgba(0, 0, 0, .2);
	color: var(--ddl-ml-text);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.ddl-ml-floating.ddl-ml-left {
	right: auto;
	left: 22px;
}

.ddl-ml-floating:hover,
.ddl-ml-floating:focus-visible {
	color: var(--ddl-ml-text);
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
	filter: brightness(.98);
}

.ddl-ml-floating:focus-visible,
.ddl-ml-inline-link:focus-visible {
	outline: 3px solid #3483fa;
	outline-offset: 3px;
}

.ddl-ml-shortcode {
	--ddl-ml-bg: #ffe600;
	--ddl-ml-text: #2d3277;
}

.ddl-ml-button-wrap {
	display: flex;
	width: 100%;
}

.ddl-ml-align-esquerda {
	justify-content: flex-start;
	text-align: left;
}

.ddl-ml-align-centro {
	justify-content: center;
	text-align: center;
}

.ddl-ml-align-direita {
	justify-content: flex-end;
	text-align: right;
}

.ddl-ml-inline-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 12px 20px;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 8px;
	background: var(--ddl-ml-bg);
	color: var(--ddl-ml-text);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: transform .2s ease, filter .2s ease;
}

.ddl-ml-inline-link:hover {
	color: var(--ddl-ml-text);
	text-decoration: none;
	transform: translateY(-1px);
	filter: brightness(.98);
}

.ddl-ml-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	padding: 22px;
	border: 1px solid #e2e5ea;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 5px 20px rgba(33, 37, 41, .08);
	color: #222;
	text-align: left;
}

.ddl-ml-card-copy {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.ddl-ml-card-copy strong {
	font-size: 19px;
	line-height: 1.25;
}

.ddl-ml-card-copy span {
	color: #5f6368;
	font-size: 14px;
}

@media (max-width: 782px) {
	.ddl-ml-floating {
		right: 16px;
		bottom: 16px;
		min-height: 48px;
		padding: 12px 15px;
	}

	.ddl-ml-floating.ddl-ml-left {
		left: 16px;
	}

	.ddl-ml-floating.ddl-ml-device-desktop {
		display: none;
	}

	.ddl-ml-card {
		align-items: stretch;
		flex-direction: column;
	}

	.ddl-ml-card .ddl-ml-inline-link {
		width: 100%;
	}
}

@media (min-width: 783px) {
	.ddl-ml-floating.ddl-ml-device-mobile {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ddl-ml-floating,
	.ddl-ml-inline-link {
		transition: none;
	}
}

