:root {
	--bg-main: #06090e;
	--bg-surface: rgba(22, 27, 34, 0.4);
	--bg-surface-hover: rgba(22, 27, 34, 0.6);
	--border-glass: rgba(255, 255, 255, 0.08);
	--primary: #10b981;
	--primary-hover: #059669;
	--text-main: #f0f6fc;
	--text-muted: #8b949e;
	--text-link: #58a6ff;
	--font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: var(--bg-main);
	background-image: 
	radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
	radial-gradient(circle at 15% 70%, rgba(88, 166, 255, 0.05) 0%, transparent 45%);
	background-attachment: fixed;
	color: var(--text-main);
	font-family: var(--font-stack);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Header Premium */
header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(6, 9, 14, 0.7);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border-glass);
	padding: 16px 0;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

.logo-icon {
	width: 28px;
	height: 28px;
	background: var(--primary);
	border-radius: 8px;
	display: inline-block;
}

.logo span {
	color: var(--primary);
}

.btn-header {
	background: var(--bg-surface);
	border: 1px solid var(--border-glass);
	color: #fff;
	padding: 10px 20px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.2s ease;
}

.btn-header:hover {
	border-color: var(--primary);
	background: rgba(16, 185, 129, 0.1);
}

/* Hero Section */
.hero {
	padding: 80px 0 60px 0;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 48px;
	align-items: center;
}

@media (max-width: 968px) {
	.hero {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 40px 0;
	}
}

.hero-content h1 {
	font-size: 46px;
	font-weight: 800;
	line-height: 1.15;
	color: #fff;
	margin-bottom: 24px;
	letter-spacing: -1px;
}

.hero-content h1 span {
	color: var(--primary);
}

.hero-content p {
	font-size: 18px;
	color: var(--text-muted);
	margin-bottom: 36px;
	max-width: 580px;
}

@media (max-width: 968px) {
	.hero-content p {
		margin-left: auto;
		margin-right: auto;
	}
}

.meta-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(88, 166, 255, 0.1);
	border: 1px solid rgba(88, 166, 255, 0.2);
	color: var(--text-link);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 20px;
}

.cta-group {
	display: flex;
	gap: 16px;
	align-items: center;
	margin-bottom: 24px;
}

@media (max-width: 968px) {
	.cta-group {
		justify-content: center;
	}
}

.btn-primary {
	background: var(--primary);
	color: #06090e;
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
	background: var(--primary-hover);
	transform: translateY(-1px);
}

.btn-secondary {
	background: transparent;
	border: 1px solid var(--border-glass);
	color: #fff;
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.03);
	border-color: var(--text-muted);
}

.trust-lines {
	display: flex;
	gap: 16px;
	color: var(--text-muted);
	font-size: 13px;
}

@media (max-width: 968px) {
	.trust-lines {
		justify-content: center;
	}
}

.price-tag-hero {
	margin-top: 16px;
	font-size: 14px;
	color: #fff;
}
.price-tag-hero strong {
	color: var(--primary);
}

/* Glass Mockup Dashboard */
.mockup-window {
	background: var(--bg-surface);
	border: 1px solid var(--border-glass);
	border-radius: 12px;
	overflow: hidden;
	backdrop-filter: blur(8px);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.mockup-topbar {
	background: rgba(0, 0, 0, 0.2);
	padding: 12px 16px;
	border-bottom: 1px solid var(--border-glass);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mockup-dots {
	display: flex;
	gap: 6px;
}

.mockup-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ff5f56;
}
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #27c93f; }

.mockup-status {
	font-size: 11px;
	background: rgba(16, 185, 129, 0.15);
	color: var(--primary);
	padding: 2px 8px;
	border-radius: 4px;
	font-weight: 600;
}

.mockup-view {
	padding: 20px;
	font-size: 13px;
}

.mockup-row {
	background: rgba(0, 0, 0, 0.15);
	border: 1px solid var(--border-glass);
	border-radius: 8px;
	padding: 12px;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mockup-row-info h4 {
	color: #fff;
	margin-bottom: 2px;
}

.mockup-row-info span {
	color: var(--text-muted);
	font-size: 12px;
}

.channel-tag {
	font-size: 11px;
	padding: 2px 6px;
	border-radius: 4px;
	font-weight: 500;
}
.channel-wa { background: rgba(16, 185, 129, 0.15); color: var(--primary); }
.channel-ig { background: rgba(255, 0, 127, 0.15); color: #ff007f; }

/* Section Base Layouts */
.section-padding {
	padding: 80px 0;
	border-top: 1px solid var(--border-glass);
}

.center-title {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 50px auto;
}

.center-title h2 {
	font-size: 32px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 16px;
	letter-spacing: -0.5px;
}

.center-title p {
	color: var(--text-muted);
	font-size: 16px;
}

/* Cards Grid */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.card-premium {
	background: var(--bg-surface);
	border: 1px solid var(--border-glass);
	border-radius: 12px;
	padding: 32px;
	transition: all 0.2s ease;
}

.card-premium:hover {
	background: var(--bg-surface-hover);
	border-color: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

.card-icon-err {
	color: #f85149;
	font-size: 24px;
	margin-bottom: 16px;
}

.card-icon-succ {
	color: var(--primary);
	font-size: 24px;
	margin-bottom: 16px;
}

.card-premium h3 {
	color: #fff;
	font-size: 18px;
	margin-bottom: 12px;
	font-weight: 700;
}

.card-premium p {
	color: var(--text-muted);
	font-size: 14px;
}

/* Stats & Metric Box */
.stats-wrapper {
	margin-top: 48px;
	background: rgba(16, 185, 129, 0.03);
	border: 1px solid rgba(16, 185, 129, 0.1);
	border-radius: 16px;
	padding: 40px;
	display: flex;
	justify-content: space-around;
	text-align: center;
	flex-wrap: wrap;
	gap: 24px;
}

.stat-block .num {
	font-size: 42px;
	font-weight: 800;
	color: var(--primary);
	line-height: 1;
	margin-bottom: 8px;
}

.stat-block .lbl {
	color: var(--text-muted);
	font-size: 14px;
}

/* Final Action Box */
.cta-premium-box {
	background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.12), transparent), var(--bg-surface);
	border: 1px solid var(--border-glass);
	border-radius: 20px;
	padding: 60px 40px;
	text-align: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cta-premium-box h2 {
	font-size: 36px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 16px;
}

.cta-premium-box p {
	color: var(--text-muted);
	font-size: 16px;
	max-width: 680px;
	margin: 0 auto 32px auto;
}

.cta-premium-box p strong {
	color: #fff;
}

/* Footer */
footer {
	background: #06090e;
	padding: 40px 0;
	border-top: 1px solid var(--border-glass);
	font-size: 13px;
	color: var(--text-muted);
	text-align: center;
}

footer p { margin-bottom: 8px; }

.meta-legal {
	font-size: 11px;
	color: #484f58;
	max-width: 800px;
	margin: 24px auto 0 auto;
	line-height: 1.5;
}

.problem-layout {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 60px;
	align-items: center;
}

.problem-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.problem-item {
	background: rgba(22, 27, 34, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	padding: 18px 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	backdrop-filter: blur(8px);
	transition: all 0.2s ease;
}

.problem-item:hover {
	background: rgba(22, 27, 34, 0.6);
	border-color: rgba(248, 81, 73, 0.2);
}

.problem-item p {
	color: #e6edf3;
	font-size: 15px;
	font-weight: 500;
	margin: 0;
}

.icon-err-svg {
	color: #f85149;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	opacity: 0.8;
}

/* Responsividade para telas menores e smartphones */
@media (max-width: 968px) {
	.problem-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.problem-intro {
		text-align: center;
	}
	.problem-intro p {
		margin: 0 auto;
	}
}
/* Estilos da Barra de Integração (Inspirado em image_597efc.png) */
.integration-divider {
	background: rgba(6, 9, 14, 0.6);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	padding: 24px 0;
}

.integration-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.integration-title {
	font-size: 11px;
	font-weight: 700;
	color: var(--text-muted);
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.integration-channels {
	display: flex;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
}

.channel-item-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
}

/* Cores sutilmente aplicadas aos ícones conforme marcas */
.text-wa svg { color: #10b981; }
.text-ig svg { color: #e1306c; }
.text-fb svg { color: #1877f2; }
.text-meta svg { color: var(--text-muted); }

/* Estrutura do Bloco de Problemas */
.problem-layout {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 60px;
	align-items: center;
}

.problem-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.problem-item {
	background: rgba(22, 27, 34, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	padding: 18px 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	backdrop-filter: blur(8px);
	transition: all 0.2s ease;
}

.problem-item:hover {
	background: rgba(22, 27, 34, 0.6);
	border-color: rgba(248, 81, 73, 0.2);
}

.problem-item p {
	color: #e6edf3;
	font-size: 15px;
	font-weight: 500;
	margin: 0;
}

.icon-err-svg {
	color: #f85149;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	opacity: 0.8;
}

/* Ajuste de responsividade global do bloco */
@media (max-width: 968px) {
	.integration-flex {
		flex-direction: column;
		text-align: center;
		justify-content: center;
	}
	.integration-channels {
		justify-content: center;
		gap: 20px;
	}
	.problem-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.problem-intro {
		text-align: center;
	}
	.problem-intro p {
		margin: 0 auto;
	}
}
/* Customizações da Seção de Recursos (image_597059.png) */
.features-tag {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.features-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Caixa Verde do Ícone Estilo Lovable */
.card-icon-box {
    width: 38px;
    height: 38px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Tratamento para telas menores (Responsividade) */
@media (max-width: 968px) {
    .features-grid-6 {
        grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
    .features-grid-6 {
        grid-template-columns: 1fr;
	}
}
/* Estilo Base do Card (Com transição suave configurada) */
.card-premium {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 32px;
    /* transition: controla a suavidade da animação ao entrar e sair com o mouse */
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
	border-color 0.3s ease, 
	box-shadow 0.3s ease;
    will-change: transform, box-shadow; /* Otimiza a renderização no navegador */
}

/* Efeito de Destaque e Elevação ao Passar o Mouse (Hover) */
.card-premium:hover {
    background: var(--bg-surface-hover);
    border-color: rgba(16, 185, 129, 0.3); /* Altera a borda cinza para um verde sutil */
    
    /* Eleva o card levemente no eixo Y */
    transform: translateY(-6px); 
    
    /* Adiciona uma sombra suave projetada para baixo, aumentando a sensação de profundidade */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 
	0 0 20px rgba(16, 185, 129, 0.05); /* Sutil brilho verde neon no fundo */
}

/* Efeito extra: O ícone verde ganha um leve destaque quando o card é focado */
.card-premium:hover .card-icon-box {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
    transform: scale(1.03);
    transition: all 0.3s ease;
}

/* Seção Como Funciona */
.steps-tag {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.step-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 36px 28px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-4px);
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: rgba(16, 185, 129, 0.4);
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Nova Linha de Métricas (4 colunas horizontais) */
.stats-dashboard-row {
    border-top: 1px solid var(--border-glass);
    padding-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-meta-block .stat-meta-num {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-meta-block .stat-meta-lbl {
    color: var(--text-muted);
    font-size: 13px;
}

.testimonials-title-space {
    margin-top: 80px;
    margin-bottom: 20px;
}

/* Customização do CTA de Fechamento */
.cta-action-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-response-time {
    font-size: 14px;
    color: var(--text-muted);
}

/* Rodapé Ajustado */
.footer-flex-layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-copy-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.meta-partner-badge {
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 4px 12px;
    border-radius: 6px;
}

/* Responsividade */
@media (max-width: 968px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
	}
    .stats-dashboard-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
	}
    .footer-copy-row {
        flex-direction: column;
        text-align: center;
	}
}


/* Ajustes do Header e Navegação */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Estilização da Imagem da Logo */
.logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre a imagem e o texto Zapline */
    text-decoration: none;
}

.logo-img {
    width: 32px;  /* Redimensiona os 480px dinamicamente para altura de menu */
    height: 32px; /* Mantém a proporção 1:1 perfeita */
    object-fit: contain;
    border-radius: 6px; /* Sutil arredondamento se sua logo tiver cantos retos */
}

/* Links do Menu Central */
.header-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #fff; /* O link acende em branco puro ao passar o mouse */
}

/* Responsividade do Menu para Celulares */
@media (max-width: 768px) {
    .header-nav {
        display: none; /* Esconde os links institucionais no mobile para priorizar o botão de ação */
    }
}

/* Banner de Cookies Premium (Estilo Glassmorphism) */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(22, 27, 34, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 20px 28px;
    z-index: 9999;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

/* Classe utilitária para esconder o banner com transição fluida */
.cookie-banner.hide {
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
}

.cookie-container {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.cookie-text p {
    color: #8b949e;
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0;
}

/* Botão de Aceitar sutil e de destaque */
.btn-cookie-accept {
    background: var(--primary);
    color: #06090e;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-cookie-accept:hover {
    background: var(--primary-hover);
    transform: scale(1.02);
}

/* Ajuste Responsivo para Celulares */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 16px;
        border-radius: 12px;
    }
    .cookie-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        text-align: center;
    }
    .btn-cookie-accept {
        width: 100%;
        padding: 12px;
    }
}

/* Container Geral do Widget */
.chat-widget-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    font-family: var(--font-stack);
}

/* Botão Flutuante Redondo */
.chat-trigger {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #06090e;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    transition: transform 0.2s ease, background 0.2s ease;
    position: relative;
}

.chat-trigger:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Badge de Notificação Piscante */
.chat-badge-pulse {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff5f56;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseBadge 2s infinite;
}

/* Janela de Conversa (Glassmorphism) */
.chat-window {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 360px;
    height: 460px;
    background: rgba(22, 27, 34, 0.95);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chat-window.hide {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
}

/* Cabeçalho Interno */
.chat-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 16px;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-mini {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
}

.chat-avatar-status {
    position: relative;
}

.status-dot-online {
    width: 10px;
    height: 10px;
    background: #27c93f;
    border: 2px solid #161b22;
    border-radius: 50%;
    position: absolute;
    bottom: -2px;
    right: -2px;
}

.chat-header h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.chat-header span {
    color: var(--text-muted);
    font-size: 11px;
    display: block;
}

.chat-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
}

.chat-close:hover { color: #fff; }

/* Corpo das Mensagens */
.chat-body {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-msg {
    max-width: 85%;
    padding: 12px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.4;
}

.chat-msg.system {
    background: rgba(255, 255, 255, 0.04);
    color: #e6edf3;
    border-top-left-radius: 2px;
    border: 1px solid var(--border-glass);
}

.chat-time {
    font-size: 10px;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
    text-align: right;
}

/* Área de Input */
.chat-footer {
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--border-glass);
}

#chat-submit-form {
    display: flex;
    gap: 8px;
}

#chat-user-phone {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-glass);
    padding: 10px 14px;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    outline: none;
}

#chat-user-phone:focus {
    border-color: var(--primary);
}

.btn-chat-send {
    background: var(--primary);
    color: #06090e;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-chat-send:hover { background: var(--primary-hover); }

/* Animações */
@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 95, 86, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(255, 95, 86, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 95, 86, 0); }
}

/* Responsividade Mobile */
@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 32px);
        height: 400px;
        bottom: 72px;
    }
}