/**
 * Untoz Engine AI — Frontend styles
 * Botões, callouts e botão de copy-link gerados pelos shortcodes /
 * blocos Gutenberg do módulo Content Tools.
 */

.untoz-btn {
	display: inline-block;
	padding: 10px 22px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.untoz-btn:hover {
	transform: translateY(-1px);
	opacity: 0.92;
}

.untoz-btn-primary {
	background: #6366f1;
	color: #fff !important;
}

.untoz-btn-secondary {
	background: #1a1d29;
	color: #fff !important;
}

.untoz-btn-outline {
	background: transparent;
	color: #6366f1 !important;
	border: 2px solid #6366f1;
}

.untoz-callout {
	border-radius: 10px;
	padding: 16px 18px;
	margin: 18px 0;
	border-left: 4px solid;
	font-size: 15px;
	line-height: 1.6;
}

.untoz-callout p:last-child {
	margin-bottom: 0;
}

.untoz-callout-info {
	background: #eef2ff;
	border-color: #6366f1;
	color: #312e81;
}

.untoz-callout-success {
	background: #ecfdf5;
	border-color: #10b981;
	color: #065f46;
}

.untoz-callout-warning {
	background: #fffbeb;
	border-color: #f59e0b;
	color: #92400e;
}

.untoz-callout-danger {
	background: #fef2f2;
	border-color: #ef4444;
	color: #991b1b;
}

.untoz-copy-link-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #f4f5fa;
	border: 1px solid #e6e8f0;
	border-radius: 8px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	color: #1a1d29;
	cursor: pointer;
	margin: 12px 0;
	transition: background 0.15s ease;
}

.untoz-copy-link-btn:hover {
	background: #eaecf5;
}

.untoz-copy-link-btn.is-copied {
	background: #d1fae5;
	color: #047857;
	border-color: #10b981;
}
