:root {
	--white: #fff;
	--black: #000;

	--accent-soft: #F3F8FE;
	--accent: #CEE7F6;
	--accent-heavy: #253E84;

	--grey: #2C2C2C;
	--purple: #C2C2FF;
	--blue: #87C1E5;
	--red: #ffb3b3;
	--green: #AFEEBF;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: "Roboto", sans-serif;
	background: var(--white);
	color: var(--black);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

main {
	flex: 1;
	width: 100%;
}

img, svg {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

section {
	border-bottom: 2px solid var(--accent-soft);
} 

footer {
	padding: 30px 100px;
	text-align: center;
	color: var(--grey);
	font-size: 14px;
	background-color: var(--accent-soft);
	margin-top: auto;
}



h1 {
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 50px;

	letter-spacing: -0.5px;
}

h2 {
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 30px;

	margin-bottom: 40px;
	letter-spacing: -0.5px;
}

h3 {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 20px;
}

h4 {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 17px;
}

h5 {
	font-family: "Roboto", sans-serif;
	font-weight: 300;
	font-size: 15px;
}

p {
	font-family: "Roboto", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 125%;

	color: var(--grey);
}

/* Wrappers */

.row-wrapper {
	display: flex;
	flex-direction: row;
	gap: 60px; /* prev: 20px */
	flex-wrap: wrap;
}

.column-wrapper {
	display: flex;
	flex-direction: column;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;

}

.title-wrapper {
	margin-bottom: 40px;
	gap: 40px;
}

.tag-wrapper {
	display: flex;
	flex-direction: column;
    align-items: baseline;

	margin-top: 40px;
	gap: 10px;
}

.link-wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}

.link-wrapper .button {
	background-color: var(--accent-soft);
	padding: 10px 10px;
	border-radius: 5px;

	font-size: 15px;
	font-weight: 300;
}

.card-wrapper {
	gap: 50px;
}

.section-wrapper {
	padding: 80px 0;
	width: 80%;
	margin: auto;
}

.footer-wrapper {
	padding: 40px 0;
	width: 80%;
	margin: auto;
}

/* Fonts */

.header1 {
	display: flex;
	flex-direction: row;

	position: relative;
	align-items: center;
	margin-bottom: 40px;
}

.header1 img{
	width: 60px;
	height: 60px;
	margin-right: 15px;
}

.header2 {
	display: flex;
	flex-direction: row;

	position: relative;
	align-items: center;
}

.header2 h2 {
	margin-bottom: 0;
}

.header2 img {
	width: 40px;
	height: 40px;
	margin-right: 15px;
}

.header1 img, .header1 h1,
.header2 img, .header2 h2 {
	z-index: 2;
}


.paragraph1 {
	font-size: 22px;
}

/* Button */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 15px;

	border-radius: 10px;
	background-color: transparent;
	padding: 15px 25px;

	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: var(--black);

	text-decoration: none;
}

.button:hover {
	background-color: var(--accent);
	color: var(--black);
}

.button img {
	width: 20px;
	height: 20px;
}

.button-primary {
	background-color: var(--accent-heavy);
	color: var(--white);
	font-weight: 600;
}

.button-primary img {
    filter: brightness(0) invert(1);
}

.button-primary:hover {
	border-radius: 10px;
	background-color: var(--black);
	color: var(--white);
}

.button-primary2 {
	background-color: var(--accent-heavy);
	color: var(--white);
	font-weight: 600;
}

.button-primary2 img {
    filter: brightness(0) invert(1);
}

.button-primary2:hover {
	border-radius: 10px;
	background-color: var(--black);
	color: var(--white);
}

.button.active,
.navbar .button.active {
	background-color: var(--accent-soft);
	color: var(--black);
	font-weight: 500;
}

.button.active:hover,
.navbar .button.active:hover {
	background-color: var(--accent);
}

.button-primary.active {
	background-color: var(--accent);
	font-weight: 500;
}

.button-big img {
	width: 35px;
	height: 35px;
}

.button-big span {
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 30px;
}


/* Navbar */

.navbar {
	display: flex;
	flex-direction: column;

	padding: 25px 0;
	color: var(--white);

	/*border-bottom: 2px solid var(--accent);*/
}

.navbar-blue {
	background-color: var(--accent-soft);
}

.navbar-wrapper {
	display: flex;
	justify-content: space-between;

	width: calc(80% + 25px);
	margin: auto;
}

.navbar-left {
	display: flex;
	justify-content: space-between;

	margin: auto 0;
    gap: 20px;
}

.navbar-right {
	display: flex;
}

/* pill */

.pill {
	padding: 5px 10px;
	border-radius: 5px;
	margin: auto 0;

	background-color: var(--accent);

	display: inline-flex;
	align-items: center;
}

.pill-blue {
	background-color: var(--accent);
}

.pill-purple {
	background-color: var(--purple);
}

.pill-green {
	background-color: var(--green);
}

/* card */

.card {
	display: flex;
	flex-direction: column;

	background-color: var(--accent-soft);
	border: 1px solid var(--accent);
	border-radius: 15px;
	max-width: 450px;
	padding: 10px;

	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	border-color: var(--blue);
}

/*.card:has(.button:hover) {
    background-color: var(--accent);
}*/

.card-top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.card-top-left {
	display: flex;
	flex-direction: row;

	align-items: center;
	justify-content: center;

	padding: 15px 25px;
}

.card-top-left img {
	margin-right: 10px;
}

.card-top-left h2 {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: var(--black);
}

.card-bottom {
	padding: 15px 25px;
}

.card .button {
	padding: 15px;
}


.card-section h2 {
	font-size: 25px;
	margin-bottom: 0;
}

.card-section div {
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.card-section .button {
	padding: 15px;
}

/* login card */

.login-card {
	margin: 30px 0;
}

.login-form {
	gap: 20px;
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-field label {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 15px;
	color: var(--grey);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="password"] {
	font-family: "Roboto", sans-serif;
	font-size: 17px;
	font-weight: 300;
	padding: 12px 16px;
	border: 2px solid var(--accent);
	border-radius: 7px;
	background-color: var(--white);
	color: var(--black);
}

.form-field input:focus {
	outline: none;
	border-color: var(--secondary);
}

.form-field-checkbox {
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

.form-field-checkbox label {
	margin: 0;
}

.form-errors,
.form-field-errors {
	list-style: none;
	font-size: 15px;
	font-weight: 400;
	color: #8b2e2e;
}

.login-submit {
	width: 100%;
	border: none;
	cursor: pointer;
	margin-top: 10px;
}

.login-divider {
	display: flex;
	align-items: center;
	gap: 15px;
	color: var(--grey);
	font-size: 15px;
	font-weight: 300;
}

.login-divider::before,
.login-divider::after {
	content: "";
	flex: 1;
	height: 2px;
	background-color: var(--accent);
}

.login-social {
	gap: 12px;
}

.login-social-button {
	width: 100%;
	background-color: var(--white);
	border: 2px solid var(--accent);
}

/* sections */

#hero {
	background-color: var(--accent-soft);
}

#hero .section-wrapper {
	justify-content: space-between;
	align-items: center;
}

#hero .section-left {
	max-width: 300px;
}

#hero .section-left .button {
	margin-top: 30px;
}

#dashboard-header {
	background-color: var(--accent-soft);
}

#dashboard-header .paragraph1 {
	max-width: 500px;
}

#dashboard-main .section-wrapper {
	gap: 200px;
}

#dashboard-main aside {
	flex: 1;
}

#dashboard-main #section-wrapper {
	flex: 5;
}

#login,
#logout {
	background-color: var(--accent-soft);
	border-bottom-color: transparent;
}

#login .login-section,
#logout .login-section {
	max-width: 520px;
	align-items: stretch;
}

#login .login-header,
#logout .login-header {
	margin-bottom: 20px;
}

#login .login-lead,
#logout .login-lead {
	margin-bottom: 40px;
}

#logout .login-form .button {
	background-color: var(--red);
}

#logout .login-form .button:hover {
	background-color: var(--accent);
}

#logout a {
	margin-top: 20px;
}

#paineis .paineis-lead,
#sobre .sobre-content {
	margin-top: 25px;
	margin-bottom: 40px;
	max-width: 640px;
}

.pages-search-wrapper {
	margin-bottom: 80px;
	max-width: 640px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pages-search-bar {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.pages-search-icon {
	position: absolute;
	left: 16px;
	pointer-events: none;
	color: var(--grey);
	opacity: 0.5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pages-search-input {
	width: 100%;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: 300;
	padding: 14px 44px 14px 48px;
	border: 2px solid var(--accent);
	border-radius: 10px;
	background-color: var(--white);
	color: var(--black);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.pages-search-input:focus {
	outline: none;
	border-color: var(--secondary);
	box-shadow: 0 0 0 3px rgba(135, 193, 229, 0.25);
}

.pages-search-input::placeholder {
	color: #78909c;
}

.pages-search-input::-webkit-search-cancel-button {
	display: none;
}

.pages-search-clear {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	font-size: 22px;
	line-height: 1;
	color: var(--grey);
	opacity: 0.5;
	cursor: pointer;
	padding: 4px 8px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s, background-color 0.2s;
}

.pages-search-clear:hover {
	opacity: 1;
	background-color: var(--accent);
}

.pages-search-counter {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	color: var(--grey);
	padding-left: 4px;
}

.pages-search-empty {
	padding: 30px 0;
	font-size: 18px;
	color: var(--grey);
	width: 100%;
}

#sobre .sobre-content {
	gap: 20px;
	margin-bottom: 0;
}

.card-list {
	gap: 20px;
	max-width: 640px;
	width: 100%;
}

.card-list .card {
	max-width: 100%;
	width: 100%;
}

/* Painel / Dashboard View */

.painel-page {
	padding: 40px 100px;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.painel-top-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.painel-header-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.painel-header-title {
	display: flex;
	align-items: center;
	gap: 15px;
}

.painel-header-title h1 {
	font-size: 32px;
	font-weight: 500;
}

.painel-actions {
	display: flex;
	align-items: center;
}

.painel-description {
	font-size: 16px;
	color: var(--grey);
	max-width: 600px;
	line-height: 1.5;
}

.painel-tabs {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
}

.painel-tabs .button.active {
	background-color: var(--accent);
	font-weight: 500;
}

.view-description {
    justify-content: space-between;
	margin-bottom: 40px;
}

.view-description .column-wrapper {
    align-items: baseline;
}

.iframe-container {
	position: relative;
	width: 100%;
	min-height: 750px;
	height: calc(100vh - 250px);
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	background-color: var(--white);
}

.iframe-container iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.empty-state {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 300px;
	padding: 40px 20px;
	text-align: center;
	color: var(--grey);
}

/* Glossary Custom Enhancements */

#area-filters {
	gap: 10px;
	flex-wrap: wrap;
}

#area-filters .button {
	padding: 8px 16px;
	font-size: 14px;
	border: 1px solid var(--accent);
	cursor: pointer;
}

#terms-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}

#terms-container details {
	margin-top: 12px;
	border-top: 1px solid var(--accent);
	padding-top: 12px;
	cursor: pointer;
}

#terms-container summary {
	font-weight: 500;
	color: var(--accent-heavy);
	font-size: 14px;
	user-select: none;
}

#terms-container details[open] summary {
	margin-bottom: 12px;
}

#terms-container .card {
	max-width: 100%;
	width: 100%;
	border-radius: 8px;
	padding: 24px;
}

#terms-container .card-top {
	border-bottom: 1px solid var(--accent-soft);
	padding-bottom: 12px;
	margin-bottom: 16px;
}

#terms-container .card-top-left h2 {
	font-size: 22px;
	font-weight: 600;
	color: var(--grey);
}

#terms-container .card-bottom {
	padding: 0;
	gap: 16px;
}

#terms-container .card-bottom p {
	font-size: 16px;
	line-height: 1.5;
}

.card-top-right {
	gap: 5px;
	align-items: center;
}

/* Tablet / Medium Screens (<= 1024px) */
@media (max-width: 1024px) {
	.section-wrapper {
		width: 90%;
		padding: 60px 0;
	}

	.navbar-wrapper {
		width: 90%;
	}

	.footer-wrapper {
		width: 90%;
	}

	#dashboard-main .section-wrapper {
		gap: 60px;
	}

	.painel-page {
		padding: 30px 40px;
	}

	footer {
		padding: 30px 40px;
	}
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
	#terms-container {
		grid-template-columns: 1fr;
	}

	/* Typography */
	h1 {
		font-size: 32px;
		word-break: break-word;
	}

	h2 {
		font-size: 24px;
		margin-bottom: 20px;
		word-break: break-word;
	}

	h3 {
		font-size: 18px;
	}

	h4 {
		font-size: 16px;
	}

	h5 {
		font-size: 14px;
	}

	p {
		font-size: 16px;
		line-height: 145%;
	}

	.paragraph1 {
		font-size: 17px;
		line-height: 145%;
	}

	/* Layout & Wrappers */
	section {
		border-bottom: 2px solid var(--accent);
	}

	.section-wrapper {
		width: 100%;
		padding: 36px 20px;
		margin: 0;
	}

	.footer-wrapper {
		width: 100%;
		padding: 24px 20px;
		margin: 0;
	}

	.row-wrapper {
		flex-direction: column;
		gap: 20px;
	}

	.grid-wrapper {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: 16px;
		width: 100%;
	}

	.card-wrapper {
		gap: 24px;
		width: 100%;
	}

	/* Decorative Headers */
	.header1 {
		margin-bottom: 24px;
		align-items: center;
	}

	.header1 img {
		width: 42px;
		height: 42px;
		margin-right: 12px;
	}

	.header1 .box {
		left: -10px;
		top: 12px;
		width: 180px;
		height: 38px;
		border-radius: 4px;
	}

	.header2 {
		align-items: center;
	}

	.header2 img {
		width: 32px;
		height: 32px;
		margin-right: 10px;
	}

	.header2 .box {
		left: -8px;
		top: 10px;
		width: 130px;
		height: 22px;
		border-radius: 4px;
	}

	.header2 h2 {
		margin-bottom: 0;
	}

	/* Navbar */
	.navbar {
		padding: 16px 0;
		border-bottom: 1px solid var(--accent);
	}

	.navbar-wrapper {
		width: 100%;
		padding: 0 16px;
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
	}

	.navbar-right {
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.navbar-left {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 8px;
		width: 100%;
		margin: 0;
	}

	.navbar-left .button {
		padding: 8px 14px;
		font-size: 15px;
		border-radius: 12px;
		gap: 8px;
		min-height: 42px;
	}

	.navbar-left .button img {
		width: 16px;
		height: 16px;
	}

	.button-big {
		padding: 6px 12px;
		gap: 10px;
	}

	.button-big img {
		width: 28px;
		height: 28px;
	}

	.button-big span {
		font-size: 24px;
	}

	/* Buttons */
	.button {
		padding: 10px 18px;
		font-size: 16px;
		border-radius: 8px;
		gap: 10px;
		min-height: 44px;
	}

	.button img {
		width: 18px;
		height: 18px;
	}

	/* Cards */
	.card {
		max-width: 100%;
		width: 100%;
		border-radius: 8px;
		padding: 8px;
	}

	.card-top {
		align-items: center;
	}

	.card-top-left {
		padding: 10px 14px;
		gap: 8px;
	}

	.card-top-left img {
		width: 18px;
		height: 18px;
		margin-right: 8px;
	}

	.card-top-left h2,
	.card-top-left h3 {
		font-size: 17px;
	}

	.card-top-right .button {
		padding: 10px;
		border-radius: 4px;
		min-height: 40px;
		min-width: 40px;
	}

	.card-bottom {
		padding: 6px 14px 12px 14px;
	}

	.card-bottom p {
		font-size: 14px;
	}

	.card-list {
		max-width: 100%;
		width: 100%;
		gap: 16px;
	}

	/* Pills */
	.pill {
		padding: 4px 10px;
		border-radius: 4px;
	}

	.pill h5 {
		font-size: 13px;
	}

	/* Hero */
	#hero .section-wrapper {
		flex-direction: column;
		align-items: stretch;
		gap: 32px;
	}

	#hero .section-left {
		max-width: 100%;
		width: 100%;
	}

	#hero .section-right {
		width: 100%;
	}

	#hero .section-right h2 {
		font-size: 22px;
		margin-bottom: 16px;
	}

	/* Paineis & Sobre Pages */
	#paineis .paineis-lead,
	#sobre .sobre-content {
		max-width: 100%;
		width: 100%;
		margin-top: 12px;
		margin-bottom: 24px;
	}

	.pages-search-wrapper {
		max-width: 100%;
		margin-bottom: 24px;
	}

	.pages-search-input {
		font-size: 15px;
		padding: 12px 38px 12px 42px;
	}

	#sobre .sobre-content {
		gap: 16px;
		margin-bottom: 0;
	}

	/* Dashboard Overview */
	#dashboard-header .title-wrapper {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
		margin-bottom: 20px;
	}

	#dashboard-header .title-wrapper .row-wrapper {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 8px;
		align-items: center;
	}

	#dashboard-header .title-wrapper .button {
		width: 100%;
		justify-content: center;
	}

	#dashboard-header .paragraph1 {
		max-width: 100%;
		width: 100%;
	}

	#dashboard-header .tag-wrapper {
		margin-top: 24px;
		gap: 8px;
	}

	#dashboard-header .tag-wrapper .row-wrapper {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 8px;
	}

	#dashboard-main .section-wrapper {
		flex-direction: column;
		gap: 32px;
		width: 100%;
	}

	#dashboard-main aside {
		width: 100%;
		flex: auto;
	}

	#dashboard-main aside .link-wrapper {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 8px;
		margin-top: 12px;
	}

	#dashboard-main aside .link-wrapper .button {
		padding: 8px 14px;
		font-size: 14px;
		border-radius: 10px;
		min-height: 38px;
	}

	#dashboard-main #section-wrapper {
		width: 100%;
		flex: auto;
		gap: 20px;
	}

	.card-section {
		padding: 16px;
		border-radius: 8px;
		background-color: var(--accent-soft);
	}

	.card-section div.row-wrapper,
	.card-section > div {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		gap: 10px;
		margin-bottom: 12px;
	}

	.card-section h2 {
		font-size: 18px;
		margin-bottom: 0;
	}

	.card-section .button {
		padding: 8px 14px;
		font-size: 14px;
		border-radius: 4px;
		min-height: 38px;
	}

	.card-section p {
		font-size: 14px;
	}

	/* Dashboard View / Embed Page */
	.painel-page {
		padding: 20px 16px;
		gap: 16px;
		width: 100%;
	}

	.painel-top-bar {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
	}

	.painel-header-info {
		width: 100%;
		gap: 6px;
	}

	.painel-header-title {
		display: flex;
		align-items: center;
		gap: 10px;
		flex-wrap: wrap;
	}

	.painel-header-title h1 {
		font-size: 20px;
		word-break: break-word;
	}

	.painel-header-title .button {
		padding: 6px 12px;
		font-size: 14px;
		border-radius: 4px;
		min-height: 38px;
	}

	.painel-actions {
		width: 100%;
	}

	.painel-actions .button {
		width: 100%;
		justify-content: center;
		font-size: 15px;
		padding: 10px 16px;
		border-radius: 4px;
	}

	.painel-description {
		font-size: 14px;
		width: 100%;
	}

	.painel-tabs {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		gap: 8px;
		padding-bottom: 6px;
		scrollbar-width: thin;
	}

	.painel-tabs::-webkit-scrollbar {
		height: 4px;
	}

	.painel-tabs::-webkit-scrollbar-thumb {
		background-color: var(--secondary);
		border-radius: 4px;
	}

	.painel-tabs .button {
		flex-shrink: 0;
		white-space: nowrap;
		padding: 8px 14px;
		font-size: 14px;
		border-radius: 5px;
		min-height: 38px;
	}

	.iframe-container {
		width: 100%;
		min-height: 480px;
		height: 65vh;
		border-radius: 8px;
	}

	.empty-state {
		padding: 30px 16px;
		min-height: 200px;
		font-size: 14px;
	}

	/* Login / Logout */
	#login .section-wrapper,
	#logout .section-wrapper {
		padding: 32px 16px;
	}

	#login .login-section,
	#logout .login-section {
		max-width: 100%;
		width: 100%;
	}

	#login .login-header,
	#logout .login-header {
		margin-bottom: 14px;
	}

	#login .login-lead,
	#logout .login-lead {
		margin-bottom: 24px;
		font-size: 15px;
	}

	.login-card {
		margin: 16px 0;
		width: 100%;
	}

	.form-field input[type="text"],
	.form-field input[type="email"],
	.form-field input[type="password"] {
		font-size: 16px;
		padding: 12px 14px;
		border-radius: 7px;
		width: 100%;
	}

	.login-submit,
	.login-social-button {
		width: 100%;
		min-height: 46px;
		font-size: 16px;
		padding: 12px 16px;
		border-radius: 7px;
		justify-content: center;
	}

	/* Footer */
	footer {
		padding: 0;
		/* border-top: 1px solid var(--accent); */
		width: 100%;
	}

	footer .footer-wrapper {
		padding: 24px 16px;
		width: 100%;
		text-align: center;
		font-size: 13px;
		margin: 0;
	}
}

/* Small Mobile Devices (<= 480px) */
@media (max-width: 480px) {
	h1 {
		font-size: 26px;
	}

	h2 {
		font-size: 20px;
		margin-bottom: 16px;
	}

	.section-wrapper {
		padding: 24px 14px;
	}

	.header1 {
		margin-bottom: 18px;
	}

	.header1 h1 {
		font-size: 26px;
	}

	.header1 img {
		width: 36px;
		height: 36px;
		margin-right: 10px;
	}

	.header1 .box {
		width: 140px;
		height: 32px;
		top: 10px;
		left: -6px;
	}

	.header2 h2 {
		font-size: 20px;
	}

	.header2 img {
		width: 26px;
		height: 26px;
		margin-right: 8px;
	}

	.header2 .box {
		width: 100px;
		height: 20px;
		top: 8px;
		left: -6px;
	}

	.navbar-wrapper {
		padding: 0 12px;
		gap: 10px;
	}

	.navbar-left {
		gap: 6px;
	}

	.navbar-left .button {
		padding: 7px 10px;
		font-size: 13px;
		gap: 5px;
		min-height: 38px;
	}

	.navbar-left .button img {
		width: 14px;
		height: 14px;
	}

	.button-big {
		padding: 4px 8px;
	}

	.button-big span {
		font-size: 20px;
	}

	.button-big img {
		width: 24px;
		height: 24px;
	}

	.card-top-left {
		padding: 8px 10px;
	}

	.card-top-left h2,
	.card-top-left h3 {
		font-size: 15px;
	}

	.card-bottom {
		padding: 4px 10px 10px 10px;
	}

	.card-bottom p {
		font-size: 13px;
	}

	.iframe-container {
		min-height: 380px;
		height: 58vh;
	}

	.painel-header-title h1 {
		font-size: 18px;
	}

	.painel-page {
		padding: 16px 12px;
	}
}
