:root {
	--izy: #6f42c1;
	--izy2: #8f63d8;
	--ink: #111827;
	--muted: #6b7280;
	--line: #e5e7eb;
	--soft: #f7f5fb;

	/*
	|--------------------------------------------------------------------------
	| POSICIONAMENTO DO WIDGET DA IZY
	|--------------------------------------------------------------------------
	| Estes valores definem a posição padrão do botão flutuante e do chat.
	| Uma página específica poderá sobrescrevê-los sem alterar este arquivo.
	*/
	--izy-widget-right: 24px;
	--izy-widget-bottom: 24px;
	--izy-chat-gap: 64px;
}
* {
	box-sizing: border-box;
}
.izy-page {
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--ink);
	background: #fff;
}
.izy-hero {
	min-height: 92vh;
	display: flex;
	align-items: center;
	background: radial-gradient(circle at 75% 20%, rgba(111, 66, 193, .14), transparent 32%), linear-gradient(180deg, #fff, #faf9fd);
	overflow: hidden;
}
.izy-kicker {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .5rem .8rem;
	border: 1px solid rgba(111, 66, 193, .22);
	border-radius: 999px;
	color: var(--izy);
	font-weight: 700;
	background: #fff;
}
.izy-title {
	font-size: clamp(2.7rem, 7vw, 6.4rem);
	line-height: .93;
	letter-spacing: -.055em;
	font-weight: 800;
	margin: 1.2rem 0;
}
.izy-title em {
	font-style: normal;
	color: var(--izy);
}
.izy-lead {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #4b5563;
	max-width: 720px;
}
.izy-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .65rem;
	padding: .95rem 1.25rem;
	border-radius: 14px;
	background: var(--izy);
	color: #fff;
	text-decoration: none;
	font-weight: 800;
	border: 0;
	box-shadow: 0 12px 30px rgba(111, 66, 193, .23);
}
.izy-button:hover {
	background: #5c34aa;
	color: #fff;
}
.izy-button.secondary {
	background: #fff;
	color: var(--ink);
	border: 1px solid var(--line);
	box-shadow: none;
}
.izy-profile-card {
	position: relative;
	border-radius: 36px;
	padding: 24px;
	background: #171220;
	color: #fff;
	box-shadow: 0 35px 80px rgba(21, 16, 29, .22);
}
.izy-profile-card img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 25px;
}
.izy-online {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	font-size: .92rem;
	color: #d1fae5;
}
.izy-online:before {
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #34d399;
	box-shadow: 0 0 0 4px rgba(52, 211, 153, .12);
}
.izy-section {
	padding: 90px 0;
}
.izy-soft {
	background: var(--soft);
}
.izy-section-title {
	font-size: clamp(2rem, 4vw, 3.6rem);
	line-height: 1.05;
	letter-spacing: -.035em;
	font-weight: 800;
}
.izy-card {
	height: 100%;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 8px 30px rgba(17, 24, 39, .04);
}
.izy-card .number {
	font-size: .8rem;
	font-weight: 900;
	color: var(--izy);
	text-transform: uppercase;
	letter-spacing: .12em;
}
.izy-bubble {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 22px 22px 22px 8px;
	padding: 18px 20px;
	box-shadow: 0 10px 30px rgba(17, 24, 39, .05);
}

/*
|--------------------------------------------------------------------------
| BOTÃO FLUTUANTE DA IZY
|--------------------------------------------------------------------------
*/
.izy-float {
	position: fixed;
	right: var(--izy-widget-right);
	bottom: var(--izy-widget-bottom);
	z-index: 1045;
	display: flex;
	align-items: center;
	gap: .7rem;
	padding: 13px 18px;
	border: 0;
	border-radius: 999px;
	background: #171220;
	color: #fff;
	font-weight: 800;
	box-shadow: 0 16px 42px rgba(0, 0, 0, .25);
}
.izy-float .dot {
	width: 10px;
	height: 10px;
	background: #34d399;
	border-radius: 50%;
}

/*
|--------------------------------------------------------------------------
| JANELA DO CHAT
|--------------------------------------------------------------------------
| O chat acompanha automaticamente o deslocamento do botão.
|
| Exemplo:
| --izy-widget-bottom: 85px;
|
| Resultado:
| botão = 85px do rodapé
| chat = 85px + 64px = 149px do rodapé
*/
.izy-chat {
	position: fixed;
	right: var(--izy-widget-right);
	bottom: calc(var(--izy-widget-bottom) + var(--izy-chat-gap));
	width: min(400px, calc(100vw - 28px));
	height: min(650px, calc(100vh - 120px));
	z-index: 1050;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 24px 80px rgba(0, 0, 0, .25);
	border: 1px solid #ddd;
	display: none;
	overflow: hidden;
}
.izy-chat.open {
	display: flex;
	flex-direction: column;
}
.izy-chat-head {
	padding: 15px 16px;
	background: #171220;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 10px;
}
.izy-chat-head img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
}
.izy-chat-title {
	font-weight: 800;
}
.izy-chat-sub {
	font-size: .78rem;
	color: #cbd5e1;
}
.izy-chat-close {
	margin-left: auto;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 1.4rem;
}
.izy-chat-messages {
	flex: 1;
	overflow: auto;
	padding: 18px;
	background: #fafafa;
}
.izy-msg {
	max-width: 88%;
	padding: 12px 14px;
	border-radius: 18px;
	margin: 0 0 10px;
	line-height: 1.45;
	font-size: .94rem;
	white-space: pre-wrap;
}
.izy-msg.user {
	margin-left: auto;
	background: var(--izy);
	color: #fff;
	border-bottom-right-radius: 5px;
}
.izy-msg.assistant {
	background: #fff;
	border: 1px solid var(--line);
	border-bottom-left-radius: 5px;
}
.izy-chat-form {
	padding: 12px;
	border-top: 1px solid var(--line);
	background: #fff;
	display: flex;
	gap: 8px;
}
.izy-chat-form textarea {
	resize: none;
	flex: 1;
	min-height: 46px;
	max-height: 110px;
	border: 1px solid #d1d5db;
	border-radius: 14px;
	padding: 11px 12px;
	outline: none;
}
.izy-chat-form button {
	width: 46px;
	border: 0;
	border-radius: 14px;
	background: var(--izy);
	color: #fff;
}
.izy-suggestions {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 4px 0 12px;
}
.izy-suggestion {
	border: 1px solid rgba(111, 66, 193, .28);
	background: #fff;
	color: var(--izy);
	padding: 7px 9px;
	border-radius: 999px;
	font-size: .78rem;
}
.izy-cta {
	display: inline-block;
	margin-top: 8px;
	padding: 8px 11px;
	border-radius: 10px;
	background: var(--izy);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: .86rem;
}
.izy-feedback {
	display: flex;
	gap: 5px;
	margin-top: 8px;
}
.izy-feedback button {
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 8px;
	padding: 4px 7px;
	font-size: .75rem;
}
.izy-typing {
	display: inline-flex;
	gap: 4px;
}
.izy-typing span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #9ca3af;
	animation: izyDot 1.2s infinite;
}
.izy-typing span:nth-child(2) {
	animation-delay: .15s;
}
.izy-typing span:nth-child(3) {
	animation-delay: .3s;
}
@keyframes izyDot {
	0%,
	80%,
	100% {
		opacity: .3;
		transform: translateY(0);
	}
	40% {
		opacity: 1;
		transform: translateY(-3px);
	}
}

/*
|--------------------------------------------------------------------------
| RESPONSIVO
|--------------------------------------------------------------------------
*/
@media (max-width: 767px) {
	:root {
		--izy-widget-right: 14px;
		--izy-chat-gap: 62px;
	}
	.izy-hero {
		min-height: auto;
		padding: 70px 0;
	}
	.izy-section {
		padding: 65px 0;
	}
}

/*
|--------------------------------------------------------------------------
| BOTÃO EXCLUIR CONVERSA
|--------------------------------------------------------------------------
*/
.izy-chat-delete {
	margin-left: auto;
	border: 0;
	background: transparent;
	color: #cbd5e1;
	font-size: 1rem;
	opacity: .8;
}
.izy-chat-delete:hover {
	color: #fff;
	opacity: 1;
}
.izy-chat-delete + .izy-chat-close {
	margin-left: 4px;
}
