@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
	--color1: #009cde;
	--color2: #008ac5;
}

body {
	font-family: "Montserrat", serif;
}

.logo {
	text-align: center;
	max-width: 300px;
	margin: 20px auto;
}

.logo img {
	width: 100%;
}

.offline {
	max-width: 350px;
	margin: 0 auto;
}

.element {
	height: 50px;
	width: 100%;
	padding: 0px 15px;
	margin-bottom: 10px;
	border: 1px solid #9da3a6;
	background: #fff;
	border-radius: 5px;
}

.login {
	width: 100%;
	height: 44px;
	padding: 0;
	border: 0;
	display: block;
	background-color: var(--color1);
	border-radius: 5px;
	cursor: pointer;
	color: #fff;
	transition: background-color 0.4s ease-out;
}

.login:hover {
	background-color: var(--color2);
}

.forgotlinkholder {
	margin: 20px auto;
	padding-bottom: 20px;
	border-bottom: 1px solid #cbd2d6;
	text-align: center;
}

.criarconta {
	width: 100%;
	padding: 10px 0px;
	border: 0;
	display: block;
	background-color: #e1e7eb;
	border-radius: 5px;
	cursor: pointer;
	color: #222;
	text-align: center;
	transition: background-color 0.4s ease-out;
}

.criarconta a {
	color: #222;
}

h2 {
	color: #000;
	font-size: 26px;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
	position: relative;
	margin-bottom: 20px;
}

h2 b {
	color: var(--color1);
}

h2::after {
	content: "";
	width: 100px;
	position: absolute;
	margin: 0 auto;
	height: 2px;
	background: var(--color1);
	left: 0;
	right: 0;
	bottom: -8px;
}

a,
a:visited {
	color: var(--color2);
	font-weight: 400;
	text-decoration: none;
}

.menu-container {
	display: flex;
	font-family: "Montserrat", serif;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	background-color: #f8f9fa;
	border-bottom: 2px solid #dee2e6;
}

.btn-custom {
	font-family: "Montserrat", sans-serif;
	background-color: var(--color1);
	color: white;
	font-weight: 500;
	border: none;
	margin-right: 5px;
	text-decoration: none;
	display: inline-block;
	padding: 8px 15px;
	border-radius: 15px;
	transition: background-color 0.3s ease;
}

a.btn-custom {
	color: white;
}

.btn-custom:hover {
	background-color: var(--color2);
	color: white;
}

.dropdown-menu {
	background-color: var(--color1);
	border-radius: 5px;
	border: none;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
	color: white;
}

.dropdown-item:hover {
	background-color: var(--color2);
	color: white;
}

.btn-logout {
	background: #f73e22;
}

.menu-container span {
	font-weight: bold;
	font-size: 18px;
	color: #333;
}

.menu-icon {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.menu-icon .bar {
	width: 25px;
	height: 3px;
	background-color: #333;
	margin: 4px 0;
}

.menu-links {
	display: flex;
	align-items: center;
}

#logo-mobile {
	display: none;
	margin: 20px auto;
	text-align: center;
}

#logo-mobile img {
	max-width: 70%;
}

@media (max-width: 768px) {
	.menu-icon {
		display: flex;
	}

	#logo-mobile {
		display: block;
	}

	.menu-links {
		display: none;
		flex-direction: column;
		width: 100%;
		height: 100%;
		background-color: #f8f9fa;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 9;
		padding: 10px 0;
		border-bottom: 2px solid #dee2e6;
	}

	.menu-links.active {
		display: flex;
	}

	.menu-links .btn-custom {
		width: 100%;
		text-align: center;
		margin: 5px 0;
	}
}

#slider {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
}

.package {
	width: 200px;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	padding: 15px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: #f9f9f9;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.package:hover {
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
	transform: translateY(-5px);
}

.package.selected {
	border: 2px dashed var(--color1);
	box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
}

.radio-hidden {
	display: none;
}

.radio-image {
	max-width: 100px;
	max-height: 100px;
	object-fit: contain;
	margin-bottom: 5px;
}

.package h3 {
	font-size: 18px;
	margin: 10px 0;
	color: #333;
}

.package .value {
	font-size: 18px;
	font-weight: bold;
	color: var(--color1);
	margin-top: auto;
}

label {
	margin-bottom: 5px;
}

.custom_select {
	position: relative;
	width: 300px;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: #fff;
	cursor: pointer;
}

.selected_option {
	display: flex;
	align-items: center;
	padding: 10px;
}

.options {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	border: 1px solid #ccc;
	border-top: none;
	border-radius: 0 0 5px 5px;
	background-color: #fff;
	z-index: 1000;
}

.option {
	display: flex;
	align-items: center;
	padding: 10px;
	transition: background-color 0.3s ease;
}

.option:hover {
	background-color: #f0f0f0;
}

.option_image {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

.option_text {
	flex-grow: 1;
}

.arrow {
	margin-left: auto;
	font-size: 12px;
}

.packages-footer .btn {
	min-width: 300px;
	margin-top: 15px;
}

.order-steps {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	max-width: 800px;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
	text-align: center;
}

.step-icon {
	background-color: #6c757d;
	color: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}

.step.completed .step-icon {
	background-color: var(--color1);
}

.step-title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 0px;
}

.step-description {
	font-size: 14px;
	color: #666;
}

.order-steps::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 70px;
	right: 50px;
	height: 1px;
	background-color: #6c757d;
	z-index: 0;
}

.step:first-child::after {
	display: none;
}
#order {
	border-bottom: 1px solid #ddd;
	padding: 10px 0px;
	font-weight: bold;
}

#order:last-of-type {
	border-bottom: none;
}

#order span {
	float: right;
}

.reward-container {
	position: relative;
	width: 100%;
	margin-bottom: 65px;
	margin-top: 50px;
}

.progress-container {
	position: relative;
	width: 100%;
	height: 10px;
	background: #ddd;
	border-radius: 5px;
	overflow: hidden;
}

.progress-bar {
	position: relative;
	width: 100%;
	height: 100%;
}

@keyframes moving_stripes {
	from {
		background-position: 0 0;
	}

	to {
		background-position: 50px 50px;
	}
}

.progress-filled {
	height: 100%;
	background: linear-gradient(135deg, #35c596 25%, #2ecf9a 25%, #2ecf9a 50%, #35c596 50%, #35c596 75%, #2ecf9a 75%, #2ecf9a);
	background-size: 50px 50px;
	animation: moving_stripes 3s linear infinite;
}

.reward-icons {
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	height: 60px;
}

.reward {
	position: absolute;
	text-align: center;
	transform: translateX(-50%);
}

.check-icon {
	position: absolute;
	top: -5px;
	right: 10px;
	font-size: 20px;
	color: white;
	background: #000;
	border-radius: 50%;
}

.reward img {
	width: 40px;
	height: 40px;
	border: 2px solid #ccc;
	border-radius: 5px;
	background: white;
}

.reward span {
	display: block;
	font-size: 12px;
	margin-top: 5px;
	color: #333;
	font-weight: bold;
	margin-bottom: -5px;
}

.reward small {
	font-size: 10px;
	color: #ddd;
}

.reward.unlocked span,
.reward.unlocked small,
.reward.unlocked .check-icon {
	color: #209d74;
}

.reward.unlocked img {
	border-color: #35c596;
}

.is_expired {
	color: rgb(231, 42, 42);
	font-weight: bold;
}
.is_valid {
	color: rgb(29, 187, 29);
	font-weight: bold;
}

footer {
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 50px;
	margin-top: 30px;
	font-size: 12px;
}
