/*@import url('https://fonts.googleapis.com/css2?family=Comfortaa&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');*/

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Roboto', Arial, sans-serif !important;
	letter-spacing: -0.01em;
	background-color: #1E1E1E !important;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Colors */
:root {
	--pallete1: #F3F3C8;
	--pallete2: #268596;
	--pallete3: #8C4F43;
	--pallete4: #2C2C2C;
}

.card-container {
	content-visibility: auto;
	content-intrinsic-size: 200px;
}

.custom-border-bottom {
	border-top: 0px;
	border-bottom: 1px solid;
	color: #444040;
}

.custom-border {
	border: 2px solid #268596;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	background-color: white !important;
}

.linha {
	padding-top: 3px;
	padding: 0px;
	margin: 0px;
	visibility: hidden;
}

.saleon_card {
  overflow: hidden;
  position: relative; /* ESSENCIAL para que a fita se alinhe no canto */
}

.saleon {
  position: absolute;
  top: 50px;
  left: 5px;
  width: 160px;
  padding: 5px 0;
  background: #ff0000; /* ou #02c101 */
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-45deg) translate(-30%, -30%);
  transform-origin: top left;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 10;
  pointer-events: none;
  letter-spacing: 0.5px;
}

.spinner-div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 80%;
}

.centered-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.btn-ft {
	border: 1px solid hsla(0,0%,100%,.8);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	background-color: #1E1E1E !important;
}

.text-balanced {
	text-wrap: balance;
}

.bg-ft {
	background-color: #1E1E1E !important;
}

.bg-pallete1 {
	background-color: #F3F3C8 !important;
}

.bg-pallete2 {
	background-color: #268596 !important;
}

.bg-pallete3 {
	background-color: #8C4F43 !important;
}

.bg-pallete4 {
	background-color: #929A56 !important;
}

.bg-pallete5 {
	background-color: #2C2C2C !important;
}

.text-ft {
	background-color: #1E1E1E !important;
}

.text-pallete1 {
	color: #F3F3C8 !important;
}

.text-pallete2 {
	color: #268596 !important;
}

.text-pallete3 {
	color: #8C4F43 !important;
}

.text-pallete4 {
	color: #929A56 !important;
}

.header {
	position: sticky;
	top: 0;
}

.a {
	color: #268596 !important;
}

.box {
	padding: 20px;
	background: #fff;
	text-align: center;
	border: 1px solid #eef0ef;
	border-radius: 0;
	position: relative;
	overflow: hidden;
}

.advanced {
	width: 200px;
	position: absolute;
	top: 18px;
	right: -68px;
	transform: rotate(45deg);
	z-index: 1;
	font-size: 14px;
	padding: 1px 0 3px 0;
	background: #268596;
	color: #fff;
}

.btn-get-started {
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 35px;
	border-radius: 50px;
	transition: 0.5s;
	margin-top: 20px;
	border: 2px solid #fff;
	color: #fff;
}

.btn-get-started:hover {
	background: #268596;
	color: white;
	border: 2px solid #5fcf80;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed !important;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: #268596;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top i {
    font-size: 18px;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*-------------------------------------------       animation       */
transiction {
	transition-property: opacity, left, top, height;
	transition-duration: 3s, 5s, 3s, 5s;
}

.animated {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
}

@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(0);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
	}

	70% {
		-webkit-transform: scale(.9);
	}

	100% {
		-webkit-transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3);
	}

	50% {
		opacity: 1;
		transform: scale(1.05);
	}

	70% {
		transform: scale(.9);
	}

	100% {
		transform: scale(1);
	}
}

/*GREAT ANIMATIONS*/

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
	-webkit-animation-duration: 0.7s;
	animation-duration: 0.7s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes slideInRight {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		visibility: visible;
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		visibility: visible;
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

/*DOWN*/

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes slideInDown {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		visibility: visible;
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		visibility: visible;
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

.blink {
    animation: pulse 1s infinite;
}

/*pulse*/

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}