@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;600;700&display=swap");

.aurex-sup-container {
	font-family: "Rubik", sans-serif;
	max-width: 1200px;
	margin: 0 auto 40px auto;
	width: 100%;
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.aurex-sup-sidebar {
	width: 320px;
	flex-shrink: 0;
	position: sticky;
	top: 40px;
	background: #f8fafc;
	padding: 25px;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
}

.aurex-sup-sidebar-title {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 20px 0;
	padding-bottom: 15px;
	border-bottom: 2px solid #3b82f6;
}

.aurex-sup-sidebar-group {
	margin-bottom: 15px;
}

.aurex-sup-sidebar-toggle {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0;
	font-size: 15px;
	user-select: none;
	transition: color 0.2s;
}

.aurex-sup-sidebar-toggle:hover {
	color: #3b82f6;
}

.aurex-sup-sidebar-toggle svg {
	width: 16px;
	height: 16px;
	transition: transform 0.3s ease;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.aurex-sup-sidebar-toggle.active svg {
	transform: rotate(180deg);
}

.aurex-sup-sidebar-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: none;
	padding-top: 12px;
}

.aurex-sup-sidebar-list li {
	margin-bottom: 10px;
	padding-left: 10px;
	border-left: 2px solid #e2e8f0;
}

.aurex-sup-sidebar-list a {
	color: #64748b;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.2s;
	display: block;
	line-height: 1.4;
}

.aurex-sup-sidebar-list a:hover {
	color: #3b82f6;
	border-left-color: #3b82f6;
}

.aurex-sup-main-content {
	flex-grow: 1;
	min-width: 0;
}

.aurex-sup-grupo-titulo {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 15px 0;
	scroll-margin-top: 40px;
}

.aurex-sup-item {
	background: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	margin-bottom: 12px;
	transition: all 0.2s ease;
	overflow: hidden;
	scroll-margin-top: 100px;
}

.aurex-sup-item.active {
	border-color: #3b82f6;
	box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.aurex-sup-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 25px;
	cursor: pointer;
	user-select: none;
}

.aurex-sup-nome {
	font-size: 16px;
	font-weight: 600;
	color: #4b5563;
	transition: color 0.2s;
	padding-right: 20px;
}

.aurex-sup-item.active .aurex-sup-nome {
	color: #3b82f6;
}

.aurex-sup-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	color: #9ca3af;
	transition: 0.3s;
}

.aurex-sup-item.active .aurex-sup-icon {
	color: #3b82f6;
	transform: rotate(180deg);
}

.aurex-sup-icon svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.aurex-sup-body {
	display: none;
	padding: 0 25px 25px 25px;
	font-size: 15px;
	color: #4b5563;
	line-height: 1.6;
}

.aurex-sup-body p {
	margin-top: 0;
	margin-bottom: 15px;
}

.aurex-sup-body p:last-child {
	margin-bottom: 0;
}

@media (max-width: 850px) {
	.aurex-sup-container {
		flex-direction: column;
		gap: 20px;
	}

	.aurex-sup-sidebar {
		width: 100%;
		position: static;
		padding: 20px;
		box-sizing: border-box;
	}
}
