/********************************************************************************************************/
/*** BASE ***/
/********************************************************************************************************/

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

html, body {
    height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;

	font-family: 'Urbanist', sans-serif;

	text-rendering: optimizeLegibility;
	letter-spacing: .01em;
	background:
			radial-gradient(circle at 70% 20%, #0098ff 0%, transparent 50%),
			radial-gradient(circle at 70% 80%, #075ed0 0%, transparent 100%),
			radial-gradient(circle at 50% 70%, #03424e 0%, transparent 60%),
			radial-gradient(circle at 80% 10%, #00398f 0%, transparent 40%),
			radial-gradient(
					farthest-corner at 40px 40px,
					#045abd 0%,
					#43e 100%
			),
			radial-gradient(circle at 30% 20%, #00d685 0%, transparent 50%);
	background-color: #0559af;
	background-blend-mode: lighten;
}

#front-main-content {
	flex: 1;
}

.gradient1 {
	flex-shrink: 0;
}

.container {
	margin: 0 auto;
	max-width: 80.0rem;
	padding: 0 2.0rem;
	position: relative;
	width: 100%;
}

/********************************************************************************************************/
/*** [FIM] BASE [FIM] ***/
/********************************************************************************************************/

/********************************************************************************************************/
/*** HEADER ***/
/********************************************************************************************************/

header {

	border-top: 1px solid transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 1);

	background-color: rgba(0, 105, 255, 0.2);

    color: rgba(255, 255, 255, 1);

    min-height: 50px;
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 10px 40px;
}

.logo {
	height: 50px;
	line-height: 50px;

	font-size: 24px;
	font-weight: 700;
	letter-spacing: 1px;
	color: white;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-shadow: 0 0 2px #000;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-links {
	display: flex;
	gap: 40px;
}

.nav-links a {
	color: white;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	position: relative;
	padding-bottom: 5px;
	transition: all 0.3s ease;
	text-shadow: 0 0 2px black;
	letter-spacing: 0.05rem;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: white;
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-links-auth {
	gap: 20px;
	align-items: center;
}

.nav-links-auth a:first-child {
	padding-bottom: 0;
}

.nav-links-auth a:last-child {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	padding: 0.55rem 1.15rem;
	border-radius: 0.38rem;
	font-weight: 500;
	box-shadow: 0 2px 8px rgba(34, 197, 94, 0.25);
	text-shadow: 0 0 2px black;
	transition: all 0.3s ease;
}

.nav-links-auth a:last-child::after {
	display: none;
}

.nav-links-auth a:last-child:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
	background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

@media (max-width: 800px) {
	header {
		padding: 10px 16px;
	}

	.nav-container {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		row-gap: 10px;
	}

	.nav-container > .nav-links:not(.nav-links-auth) {
		grid-column: 1 / -1;
		grid-row: 2;
		justify-content: center;
		gap: 16px;
	}

	.nav-links a {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.nav-container > .nav-links:not(.nav-links-auth) {
		gap: 10px;
	}

	.nav-links a {
		font-size: 13px;
	}

	.nav-links-auth {
		gap: 12px;
	}

	.nav-links-auth a:last-child {
		padding: 7px 12px;
	}
}

/********************************************************************************************************/
/*** [FIM] HEADER [FIM] ***/
/********************************************************************************************************/

/********************************************************************************************************/
/*** HERO ***/
/********************************************************************************************************/

.hero {
	padding: 80px 0;
	color: white;
	overflow: hidden;
}

.hero-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
	align-items: center;
	gap: clamp(40px, 5vw, 76px);
}

.hero-copy {
	position: relative;
	text-align: left;
	z-index: 2;
}

.hero h1.frase-1 {
	font-size: 58px;
	margin-bottom: 20px;
	background: linear-gradient(0deg, #FFF 0%, #cecece 50%, #efefef 100%);
	background-clip: text;
	color: transparent;
	font-weight: bold;
	text-transform: uppercase;
	position: relative;
	z-index: 20;
}

.hero h1.frase-1-shadow {
	color: transparent;
	font-size: 58px;
	text-shadow: 0 0 4px #393939;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	font-weight: bold;
	text-transform: uppercase;
	pointer-events: none;
	z-index: 10;
}

.hero p.frase-2 {
	max-width: 800px;
	margin: 0 0 40px;
	font-weight: 200;
	color: #000;
	font-size: 40px;
}


.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: flex-start;
}

.register-cta-incentive {
	display: block;
	font-size: 14px;
	color: #494949;
	margin-top: 15px;
}

.hero-visual {
	display: grid;
	place-items: center;
	position: relative;
	margin: -58px -52px -58px 0;
	min-width: 0;
	pointer-events: none;
}

.hero-visual::before {
	content: '';
	position: absolute;
	inset: 8% -10% 6% -16%;
	background: radial-gradient(
			ellipse at center,
			rgba(255, 255, 255, .42) 0%,
			rgba(189, 235, 255, .28) 40%,
			rgba(84, 218, 196, .14) 58%,
			transparent 76%
	);
	filter: blur(18px);
	z-index: 0;
}

.hero-visual img {
	display: block;
	width: min(100%, 455px);
	height: auto;
	position: relative;
	z-index: 1;
	mix-blend-mode: normal;
}

@media (min-width: 1280px) {
	.hero-layout {
		grid-template-columns: minmax(0, 1.25fr) minmax(400px, .75fr);
		gap: clamp(32px, 4vw, 56px);
	}

	.hero h1.frase-1,
	.hero h1.frase-1-shadow {
		width: max-content;
		white-space: nowrap;
	}
}

@media (max-width: 1100px) {
	.hero-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}

	.hero-copy {
		text-align: center;
	}

	.hero h1.frase-1-shadow {
		left: 50%;
		transform: translateX(-50%);
	}

	.hero p.frase-2 {
		margin-right: auto;
		margin-left: auto;
	}

	.hero-buttons {
		justify-content: center;
	}

	.hero-visual {
		margin: -24px auto -72px;
		width: min(100%, 460px);
	}

	.hero-visual img {
		width: min(82vw, 390px);
	}
}

@media (max-width: 600px) {
	.hero-layout {
		padding-right: 12px;
		padding-left: 12px;
	}

	.hero-visual {
		margin-bottom: -52px;
	}

	.hero-visual img {
		width: min(94vw, 330px);
	}
}

.btn-white-1 {
	font-family: 'Urbanist', sans-serif;
	background: linear-gradient(to bottom, #ffffff 0%,#d6d6d6 100%);
	appearance: none;
	border-radius: 8px;
	border-style: none;
	box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
	color: #34434f;
	font-size: 16px;
	font-weight: 500;
	height: 42px;
	letter-spacing: .25px;
	line-height: normal;
	max-width: 100%;
	overflow: visible;
	padding: 2px 24px;
	cursor: pointer;
	transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1),opacity 15ms linear 30ms,transform 270ms cubic-bezier(0, 0, .2, 1) 0ms;
	user-select: none;
	touch-action: manipulation;
	width: auto;
	will-change: transform,opacity;
	text-shadow: 1px 1px 0 #FFF;
}

.btn-white-1:hover {
	background: #F6F9FE;
	color: #174ea6;
}

.btn-white-1:active {
	box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
	outline: none;
}

.btn-white-1:focus {
	outline: none;
	border: 2px solid #4285f4;
}

.btn-white-1:not(:disabled) {
	box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.btn-white-1:not(:disabled):hover {
	box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
}

.btn-white-1:not(:disabled):focus {
	box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.btn-white-1:not(:disabled):active {
	box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px;
}


.btn-blue-1 {
	font-family: 'Urbanist', sans-serif;
	font-size: 16px;
	font-weight: 500;
	height: 42px;
	letter-spacing: .25px;
	line-height: normal;
	max-width: 100%;
	overflow: visible;
	padding: 2px 24px;
	cursor: pointer;
	color: #fff;
	text-shadow: 0 0 5px #383838;
	border-radius: 8px;
	border: 1px solid #3247cf;
	background:
			radial-gradient(circle 70px at 40% 0%, #4091d5 0%, transparent 60%),
			radial-gradient(circle 50px at 60% 100%, #4091d5 0%, transparent 80%),
			linear-gradient(180deg, #0a40ce, #4058ff 38%, #40a0ff);
	box-shadow:
			inset 0 1px 0px rgba(255, 255, 255, .2),
	inset 0 -1px 0px rgba(0, 0, 0, .2),
	0 1px 2px rgba(0, 0, 0, .2);
}

.btn-blue-1:hover {
	background-image: linear-gradient(180deg, #174cd2, #3f68ff 38%, #5aaaff);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: all 1s ease-in-out;
}

.btn-blue-1:active {
	border-color: #192ba1;
}

.btn-blue-1::before,
.btn-blue-1::after {
	content: '';
	position: absolute;
	z-index: -1;
	inset: 0;
	border-radius: 7px;
	opacity: 0;
	transition-property: opacity;
	transition-duration: .2s;
}

.btn-blue-1::before {
	background-image: linear-gradient(180deg, #40a6ff, #4058ff 62%, #4075ff);
	box-shadow: inset 0 1px 0px rgba(255, 255, 255, .2),
	inset 0 -1px 0px rgba(0, 0, 0, .2);

}
.btn-blue-1::after {
	background-image: linear-gradient(180deg, #0a40ce, #4058ff 38%, #40a0ff);
	box-shadow: inset 0 1px 1px #0b1c95;
}

/********************************************************************************************************/
/*** [FIM] HERO [FIM] ***/
/********************************************************************************************************/

/********************************************************************************************************/
/*** FEATURES ***/
/********************************************************************************************************/

#features {
	background-color: #eee;
	padding: 40px 0;
}

.featureList {
	display: flex;
	justify-content: space-between;

}

.featureBox {
	border-radius: 8px;
	padding: 25px 30px 30px 30px;
	text-align: center;
	width: 390px;
	border: 0.5px solid transparent;
}

.feature-box-header {
	display: flex;
	align-items: center;
}

.featureBox svg {
	filter: drop-shadow(1px 1px 1px rgb(255, 255, 255))
			drop-shadow(0px 0px 0.5px rgba(100, 100, 100, .5));
}

.featureBox h2 {
	font-size: 35px;
	text-shadow: 1px 1px 1px rgb(255, 255, 255), 0px 0px 2px rgba(100, 100, 100, .8);
}

.featureBox p {
	margin-top: 10px;
	font-size: 20px;
	text-align: left;
	color: #375284;
	text-shadow: 0 0 2px #FFF;
}

.featureBox ul {
	display: grid;
	gap: 10px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
	text-align: left;
	font-size: 18px;
	line-height: 1.35;
	color: #375284;
	text-shadow: 0 0 2px #FFF;
}

.featureBox li {
	position: relative;
	padding-left: 18px;
}

.featureBox li::before {
	content: '';
	position: absolute;
	top: .58em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #19a889;
	box-shadow: 0 0 0 3px rgba(25, 168, 137, .1);
}

.featureEasy {
	color: #16789e;
	background:
			linear-gradient(#fcfcfc, #eee) padding-box,
			linear-gradient(135deg, #fcfcfc, #ea580c) border-box;
	background-origin: padding-box, border-box;
	background-clip: padding-box, border-box;
}

.featureEasy svg {
	margin-left: -10px;
}

.featureFast {
	color: #16789e;
	background:
			linear-gradient(#fcfcfc, #eee) padding-box,
			linear-gradient(135deg, #fcfcfc, #ea580c) border-box;
	background-origin: padding-box, border-box;
	background-clip: padding-box, border-box;
}

.featureFast svg {
	margin-left: -9px;
}

.featureClear {
	color: #16789e;
	background:
			linear-gradient(#fcfcfc, #eee) padding-box,
			linear-gradient(135deg, #fcfcfc, #ea580c) border-box;
	background-origin: padding-box, border-box;
	background-clip: padding-box, border-box;
}

.featureClear h2 {
	margin-left: 5px;
}

.featureClear svg {
	margin-left: -3px;
}

/********************************************************************************************************/
/*** [FIM] FEATURES [FIM] ***/
/********************************************************************************************************/

/********************************************************************************************************/
/*** INTEGRATIONS ***/
/********************************************************************************************************/

.integrations-section {
	background-color: #f4f7fa;
	padding: 80px 0;
}

.integrations-title {
	text-align: center;
	font-size: 40px;
	font-weight: 600;
	margin-bottom: 16px;
	color: #1e2d48;
}

.integrations-subtitle {
	text-align: center;
	font-size: 20px;
	color: #666;
	margin-bottom: 60px;
}

.integrations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 30px;
	max-width: 1080px;
	margin: 0 auto 40px;
}

.integration-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 24px;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	cursor: pointer;
}

.integration-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.integration-logo {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.integration-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.integration-item:hover .integration-logo img {
	transform: scale(1.1);
}

.integration-name {
	font-size: 14px;
	font-weight: 500;
	color: #1e2d48;
	text-align: center;
}

.integrations-footer {
	text-align: center;
	font-size: 16px;
	color: #999;
	font-style: italic;
	margin-top: 20px;
}

@media (max-width: 768px) {
	.integrations-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
		gap: 20px;
	}

	.integration-item {
		padding: 16px;
	}

	.integration-logo {
		width: 48px;
		height: 48px;
	}
}

/********************************************************************************************************/
/*** [FIM] INTEGRATIONS [FIM] ***/
/********************************************************************************************************/

/********************************************************************************************************/
/*** PRICING ***/
/********************************************************************************************************/

.pricing-section {
	background-color: #f4f7fa;
	padding: 80px 0;
}

.pricing-title {
	text-align: center;
	font-size: 42px;
	font-weight: 600;
	margin-bottom: 60px;
	color: #1e2d48;
}

.pricing-cards {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}

.pricing-card {
	background: #e8e8e8;
	border-radius: 12px;
	padding: 40px;
	width: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
	border-bottom: 4px solid transparent;
}

.pricing-card.pro {
	width: 360px;
	padding-top: 54px;
	padding-bottom: 44px;
	min-height: 562px;
	border-bottom-color: #125ae3;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.42);
}

.pricing-block.title h2 {
	font-size: 32px;
	font-weight: 600;
	color: #1e2d48;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.pricing-card.pro .title h2 {
	margin-bottom: 10px;
}

.pricing-card.free, .pricing-card.enterprise {
	margin-top: 30px;
	min-height: 452px;
}

.pricing-card.enterprise {
	min-height: 500px;
}

.pricing-block {
	width: 100%;
	text-align: center;
}

.pricing-block.title {
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pricing-block.subtitle {
	min-height: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	font-size: 16px;
	letter-spacing: .05em;
	gap: 6px;
	background: linear-gradient(180deg, #916f03, #e1bf04, #887400);
	background-clip: text;
	color: transparent;
}

.pricing-block.price {
	height: 80px;
	font-weight: 600;
	color: #0f2b62;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	margin: auto;
}

.pricing-amount {
	font-size: 24px;
}

.pricing-unit {
	font-size: 15px;
	color: #777;
}

.pricing-block.list {
	min-height: 160px;
	display: flex;
	align-items: center;
}

.feature-list {
	list-style: none;
	padding-left: 0;
	text-align: left;
	color: #666;
	font-size: 15px;
}

.feature-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.check-icon {
	width: 20px;
	height: 20px;
	color: #1cb57a;
	flex-shrink: 0;
}

.pricing-block.cta {
	margin-top: auto;
	display: flex;
	justify-content: center;
}

div.pricing-card.free button, div.pricing-card.pro button {
	width: 80%;
}



/********************************************************************************************************/
/*** [FIM] PRICING [FIM] ***/
/********************************************************************************************************/

/********************************************************************************************************/
/*** FAQ ***/
/********************************************************************************************************/

.faq-section {
	background-color: #fff;
	padding: 80px 0;
}

.faq-title {
	text-align: center;
	font-size: 40px;
	font-weight: 600;
	margin-bottom: 60px;
	color: #1e2d48;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 16px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	cursor: pointer;
	background-color: #fafafa;
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background-color: #f5f5f5;
}

.faq-question h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: #1e2d48;
	flex: 1;
	padding-right: 20px;
}

.faq-toggle {
	font-size: 24px;
	font-weight: 300;
	color: #666;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	display: none;
	background-color: #fff;
	padding: 0 24px;
}

.faq-item.active .faq-answer {
	display: block;
	animation: fadeInDown 0.3s ease;
	padding: 20px 24px;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.faq-answer p {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #666;
}

/********************************************************************************************************/
/*** [FIM] FAQ [FIM] ***/
/********************************************************************************************************/

/********************************************************************************************************/
/*** FOOTER ***/
/********************************************************************************************************/

.footer {
	background: linear-gradient(135deg, #1e2d48 0%, #2d3e5f 100%);
	color: #e0e0e0;
	padding: 60px 0 0;
	flex-shrink: 0;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
	display: flex;
	flex-direction: column;
}

.footer-logo {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #fff;
	margin-bottom: 12px;
}

.footer-tagline {
	font-size: 14px;
	color: #00d685;
	margin: 0 0 8px 0;
	font-weight: 500;
}

.footer-description {
	font-size: 14px;
	color: #b0b0b0;
	line-height: 1.6;
	margin: 0 0 20px 0;
}

.footer-social {
	display: flex;
	gap: 12px;
}

.social-link {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #e0e0e0;
	transition: all 0.3s ease;
}

.social-link:hover {
	background-color: #00d685;
	color: #1e2d48;
	transform: translateY(-3px);
}

.footer-title {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 16px 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #b0b0b0;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
	display: inline-block;
}

.footer-links a:hover {
	color: #00d685;
	padding-left: 4px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 0;
}

.footer-copyright {
	margin: 0;
	font-size: 14px;
	color: #888;
}

.footer-bottom-links {
	display: flex;
	gap: 16px;
	align-items: center;
}

.footer-bottom-links a {
	color: #888;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
	color: #00d685;
}

.footer-separator {
	color: #555;
	user-select: none;
}

@media (max-width: 1024px) {
	.footer-content {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 30px;
	}

	.footer-section:first-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	.footer-content {
		grid-template-columns: 1fr 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.footer-content {
		grid-template-columns: 1fr;
	}
}

/********************************************************************************************************/
/*** [FIM] FOOTER [FIM] ***/
/********************************************************************************************************/

/****************************************************************************/
/******************************   LOGIN BOX   *******************************/
/****************************************************************************/

.login-box {
	width: 400px;
	margin: 125px auto 50px;
}

.login-box-title {
	color: #1f5c07;
	border-bottom: 1px solid #66C3CC;
	text-align: center;
	margin-bottom: 5px;
}

.login-box-vizarea {
	padding: 20px;
	background: rgba(235, 235, 235, .5);
	border-radius: 10px;
	border: 1px solid #E3E3E3;
	min-height: 200px;
	box-shadow: 0 0 10px 5px #c1c1c18c;
	backdrop-filter: blur(10px);
}

.login-box-input {
	height: 35px;
	width: 100%;
	display: block;
	margin-bottom: 10px;
	padding: 5px;
	border-radius: 5px;
	border: 1px solid #2d312d;
}

.login-box-input:focus {
	outline: none;
	border-color: #0B64A0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login-box-input::placeholder {
	opacity: 0.85;
	color: #5b5b5b;
}

.login-box_messages-container {
	position: relative;
	min-height: 25px;
	margin-bottom: 15px;
}

.login-box_invalid-credentials, .login-box_error {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	color: #952e0b;
	padding: 5px;
	transition: opacity 0.3s ease;
}

.login-box_session-expired {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	color: #d97706;
	text-align: center;
	background-color: #fef3c7;
	padding: 5px;
	border-radius: 5px;
	border: 1px solid #f59e0b;
	transition: opacity 0.3s ease;
}



.login-button {
	display: flex;
	align-items: center;
	font-family: inherit;
	cursor: pointer;
	font-size: 15px;
	padding: 5px 10px;
	color: white;
	background: linear-gradient(
			0deg,
			rgba(20, 167, 62, 1) 0%,
			rgba(102, 247, 113, 1) 100%
	);
	border: none;
	letter-spacing: 0.05em;
	border-radius: 5px;
	float: right;
}

.login-button svg {
	margin-right: 3px;
}

.login-button:hover {
	box-shadow: 0 0.5em 1.5em -0.5em #14a73e98;
}

.login-button:active {
	box-shadow: 0 0.3em 1em -0.5em #14a73e98;
}

.login-box_signup {
	text-align: center;
	margin-top: 20px;
}

/****************************************************************************/
/***************************   FIM LOGIN BOX   *******************************/
/****************************************************************************/
