/* TOP BAR (padronizada com inicio/sobre) */
.topbar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255,255,255,0.85);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid #dbeafe;
	}

.topbar-container {
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	max-width: 1200px;
	margin: 0 auto;
}
.logo img {
	height: 56px;
	max-height: 56px;
	width: auto;
	display: block;
	transition: transform 0.3s ease;
}

.logo:hover img {
	transform: scale(1.05);
}

.nav {
	display: flex;
	gap: 0.25rem;
}

.nav-item {
	background: none;
	border: none;
	font-size: 0.95rem;
	text-decoration: none;
	color: #374151;
	cursor: pointer;
	padding: 0.5rem 0.75rem;
	border-radius: 8px;
	transition: background 0.3s, color 0.3s;
	display: flex;
	align-items: center;
	gap: 6px;
}

.nav-item:hover {
	background: #eff6ff;
}

.nav-item.active {
	background: #dbeafe;
	color: #1d4ed8;
}

body {
	font-family: Poppins, Arial, Helvetica, sans-serif;
	background: #f5f7fb;
	color: #222;
	margin: 0;
	padding: 0;
}

@media (max-width: 768px) {
	.topbar-container {
		padding: 8px 12px;
		height: auto;
		min-height: 64px;
		gap: 8px;
		flex-wrap: wrap;
	}

	.logo img {
		height: 40px;
		max-height: 40px;
	}

	.nav {
		gap: 4px;
		flex-wrap: wrap;
	}

	.nav-item {
		padding: 0.4rem 0.6rem;
		font-size: 0.85rem;
	}
}

.suporte-container {
	max-width: 420px;
	margin: 60px auto;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	padding: 32px 28px;
	text-align: center;
}

.suporte-container h1 {
	color: #2563eb;
	margin-bottom: 18px;
}

.suporte-container p {
	color: #444;
	font-size: 16px;
	margin-bottom: 18px;
}

.whatsapp-box {
	margin: 24px 0 8px 0;
	padding: 18px 0;
	background: #e6f9ed;
	border-radius: 8px;
	font-size: 1.25em;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	border: 1px solid #b2e5c7;
}

.whatsapp-label {
	color: #1ebea5;
	font-weight: bold;
	font-size: 1.1em;
}

.whatsapp-number {
	color: #128c7e;
	font-size: 1.3em;
	font-weight: bold;
	letter-spacing: 1px;
}

.whatsapp-actions {
	display: grid;
	gap: 10px;
	margin-top: 14px;
}

.whatsapp-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 14px;
	border-radius: 8px;
	border: 1px solid #b2e5c7;
	background: #25d366;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: filter 0.2s ease, transform 0.2s ease;
}

.whatsapp-action:hover {
	filter: brightness(0.95);
	transform: translateY(-1px);
}

.whatsapp-action.copy {
	background: #fff;
	color: #128c7e;
}

.helper-text {
	min-height: 18px;
	margin-top: 10px;
	font-size: 13px;
	color: #0f766e;
}
