/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
	scrollbar-width: auto;
	scrollbar-color: #dc1849 #242424;
	font-family: 'Nunito Sans', sans-serif;
	color:#ffffff;
	max-width: 100%;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6,p,li{
	font-family: 'Nunito Sans', sans-serif;
	line-height:130%;
}
:root {
	--main-color: #DA1A47;
	--white-color: #f0f0f0;
	--dark-color: #131313;
	--dark-secundary-color: #121212;
	--ff-main: 'Nunito Sans', sans-serif;
	/* --ff-secundary: 'Roboto', sans-serif; */
	--fs-xl: 2.15em;
	--fs-600: 1.4em;
	--fs-500: 1.14em;
	--fs-400: 0.95em;
	--fs-300: 0.65em;
	--fw-light: 300;
	--fw-regular: 400;
	--fw-bold: 700;
	--fw-semibold: 600;
	--pd-small: 4rem;
	--pd-medium: 8rem;
	--pd-large: 12rem;
	--rem-small: 0.9 rem;
	--rem-medium: 3rem;
	--rem-large: 6rem;
	--rem-superlarge: 8.45 rem;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
	width: 7px;
	height: 7px;
}

*::-webkit-scrollbar-track {
	background: #242424;
}

*::-webkit-scrollbar-thumb {
	background-color: #dc1849;
	border-radius: 10px;
	border: 0px none #ffffff;
}
::-moz-selection { /* Code for Firefox */
  color: #ffffff;
  background: #dc1849;
}

::selection {
  color: #ffffff;
  background: #dc1849;
}

/* UNVEIL */
.unveil-loading::before {
  position: absolute;
  content: "";
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  background-image: url("../images/fake-loader.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
}
.unveil2.unveil2-grey.unveil-loading::before {
  background-image: url("../images/fake-loader-grey.svg");
}
.unveil-loading.unveil2-small::before {
  top: 40%;
  left: 40%;
  width: 20%;
  height: 20%;
}

/* COLORBOX */
#cboxOverlay{
	background: rgba(0,0,0,0.9) !important;
}
#cboxContent *{
	font-family: 'Nunito Sans', sans-serif;
}

html, body{
	background:#131313;
}
section{
	position:relative;
	max-width:100vw;
	overflow:hidden;
	z-index:5;
}

.page{
	position:relative;
	width:1200px;
	margin-left:50%;
	left:-600px;
	z-index:5;
}
@media screen and (max-width:1200px){
	.page{
		width:100%;
		max-width:vw;
		left:0;
		margin-left:0;
	}
}

header{
	position:fixed;
	top:0;
	left:0;
	z-index:9999;
	width:100%;
	/* overflow:hidden; */
}
header .header-links{
	position:relative;
	background:#1F1F1F;
	box-shadow:0 3px 16px rgba(0,0,0,0.3);
	border-bottom:1px solid rgba(255,255,255,0.1);
	max-height:40px;
}
header .header-links .page{
	padding:0 10px;
}
header .header-links li{
	position:relative;
	font-size:10px;
	padding:12px 10px;
	color:#ffffff;
	font-weight:normal;
	text-align:center;
	margin:0px 2px;
}
header .header-links li i{
	font-size:15px;
	display:inline-block;
}
header .header-links .active::after {
	position:absolute;
	top:auto;
	bottom:0;
	left:0;
	width:100%;
	height:2px;
	background:rgba(255,255,255,0.4);
	content:"";
	opacity:1;
}

@media screen and (max-width:630px) {
	header .header-links li{
		padding:12px 5px;
	}
}
@media screen and (max-width:600px){
	header .header-links{
		display:none;
	}
}
header .header-links {
	z-index: 6;
}

.lang-container {
	position: initial !important;
}

.lang-container .lang-item-active {
	gap: 5px;
	cursor: pointer;
}

.lang-container .lang-item-active i {
	font-size: 14px;
	opacity: 0.3;
	transition: all .3s ease-in-out;
}

.lang-container #lang-dropwdonw-toggle {
	display: none;
}

.lang-container .lang-dropwdonw {
	position: absolute;
	top: 55px;
	right: 0;
	background: #2d2d2d;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	transform: scaleY(0);
	transform-origin: top;
	opacity: 0;
	transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.lang-container .lang-dropwdonw::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #2d2d2d;
	position: absolute;
	right: calc(50% - 18px);
	top: -10px;
}

.lang-container .lang-dropwdonw .lang-item {
	padding: 10px 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 12px;
	opacity: 0;
	transition: all .3s ease-in-out, opacity 0.3s ease-in 0.3s;
}

.lang-container .lang-dropwdonw .lang-item:hover {
	background: rgba(255, 255, 255, 0.05);
}

.lang-container .lang-dropwdonw .lang-item:first-child {
	border-radius: 10px 10px 0 0;
}

.lang-container .lang-dropwdonw .lang-item:last-child {
	border-bottom: none;
	border-radius: 0 0 10px 10px;
}

.lang-container .lang-item img {
	border-radius: 3px;
	margin-right: 5px;
	max-width: 20px;
	height: 12px;
	width: 100%;
}

.close-lang-dropdown {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100vw;
	height: 100vh;
	display: none;
}

.lang-container #lang-dropwdonw-toggle:checked~label i {
	transform: rotate(180deg);
}

.lang-container #lang-dropwdonw-toggle:checked~.lang-dropwdonw {
	display: block;
	transform: scaleY(1);
	opacity: 1;
}

.lang-container #lang-dropwdonw-toggle:checked~.lang-dropwdonw .lang-item {
	opacity: 1;
}

.lang-container #lang-dropwdonw-toggle:checked~.close-lang-dropdown {
	display: flex;
}


.header-menu{
	position:relative;
	padding:20px 0;
	transition:all 300ms ease-in-out;
}
body.body-scrolled .header-menu{
	background:#1F1F1F;
	box-shadow:0 3px 16px rgba(0,0,0,0.3);
	padding:10px 0;
}
.header-menu .logo img{
	position:relative;
	height:34px;
}
.header-menu .header-menu-links{
	padding:0 5px;
	font-size:16px;
}
.header-menu .header-menu-mobile{
	padding:20px 20px;
	display:none;
}
.header-menu .header-menu-mobile .buttonMenu{
	cursor:pointer !important;;
}
.header-menu .header-menu-mobile i{
	font-size:20px;
}
.header-menu .header-menu-links li{
	padding:5px 10px;
}
@media screen and (max-width:900px){
	.header-menu .header-menu-links{
		display:none;
	}
	.header-menu .header-menu-mobile{
		display:block;
	}
}





footer{
	position:relative;
	border-top:1px solid rgba(255,255,255,0.05);
    padding: 50px 0;
	z-index:5;
	background-color:rgb(26, 26, 26);
	background-image:src('../images/footer-santas-floor.png');
}
footer .footer-col{
	margin-bottom: 20px;
}
footer .footer-col h6{
	font-size:16px;
	font-weight:bold;
}
footer .footer-col ul li{
	position:relative;
	font-size:14px;
	padding-left:15px;
}
footer .footer-col ul li a:hover{
	text-decoration:underline;
}
footer .footer-col ul li::before{
	position:absolute;
	top:50%;
	left:0px;
	margin-top:-3px;
	width:6px;
	height:6px;
	border-radius:50%;
	content:"";
	background:#ffffff;
	opacity:0.5;
}
footer .footer-logo {
    gap: 10px;
}
footer .safe-browsing-logo {
    width: 90px;
}
button.neon-red{
	position:relative;
	min-width:150px;
	padding:15px 25px;
	height:50px;
	background: rgb(218,26,71);
	background: -moz-linear-gradient(71deg, rgba(218,26,71,1) 0%, rgba(180,14,53,1) 100%);
	background: -webkit-linear-gradient(71deg, rgba(218,26,71,1) 0%, rgba(180,14,53,1) 100%);
	background: linear-gradient(71deg, rgba(218,26,71,1) 0%, rgba(180,14,53,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#da1a47",endColorstr="#b40e35",GradientType=1);
	border-radius:30px;
	color:#ffffff;
	border:0;
	font-weight:900;
	font-size:14px;
	padding-right:75px;
	cursor:pointer !important;
	box-shadow: 0 0 15px 6px rgba(221,22,68,0.4);
	transition:all 300ms ease-in-out;
}
button.neon-red:hover{
	box-shadow: 0 0 25px 10px rgba(221,22,68,0.4);
}
button.neon-red::after{
	position:absolute;
	top:0;
	left:auto;
	right:0;
	width:60px;
	height:50px;
	text-align:center;
	color:#ffffff;
	font-family:"Font Awesome 5 Pro";
	font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
	content:"\f138";
	line-height:50px;
	font-size:16px;
	transition:all 300ms ease-in-out;
	font-family: var(--fa-style-family,"Font Awesome 6 Free");
    font-weight: var(--fa-style,900);
}
button.neon-red:hover::after{
	transform: translateX(2px);
}


.swiper-pagination-bullet{
	width:12px !important;
	height:12px !important;
	background:rgba(255,255,255,0.7) !important;
	margin:0 2px;
	box-shadow:0 2px 4px rgba(0,0,0,0.2);
	transform:scale(0.8) !important;
}
.swiper-pagination-bullet-active{
	background:#ffffff !important;
	transform:scale(1) !important;
}

.section-header{
	position:relative;
	z-index:5;
}
.section-header h2{
	font-size: 26px;
    font-weight: 900;
}
.section-header p{
	font-size:14px;
	opacity:0.9;
}
.section-header-arrow{
	position:relative;
	width:30px;
	height:30px;
	border-radius:15px;
	border:0;
	background:#424242;
	box-shadow:0 3px 3px rgba(0,0,0,0.4);
	text-align:center;
	line-height:30px;
	cursor:pointer !important;
	margin:3px;
	z-index:5;
}
#home-ferramentas .section-header-arrow{
	margin-inline: 2rem;
	margin-block: 1rem;
} 

.footer-bar{
	position:relative;
	border-top:1px solid rgba(255,255,255,0.1);
}
.footer-bar .page{
	padding:5px 10px;
}
.footer-bar p, .footer-bar i{
	font-size:14px;
	color:#ffffff;
}
.footer-bar i{
	opacity:0.7;
}
.footer-bar a {
	padding: 5px 0;
}
.footer-bar a p {
	border-bottom: 1px solid transparent;
	transition: all .3s ease-in-out;
	padding-bottom: 3px;
}
.footer-bar a:hover p {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#faq-header {
	padding: 60px 0;
}
#faq-header h1 {
	color: #ffffff;
	font-size: 26px;
	font-weight: bold;
}
#faq-header p u {
	color: #d4d4d4;
	font-size: 13px;
}
/* Accordion */
#accordion{
	margin:30px auto;
	width: 100%;
	line-height: 200%;
}
#accordion div{
	background:#2E2E2E;
	padding: 10px;
	display:none;
}
#accordion i{
	float: right;
	height: 100%;
	margin-left: 2px;
}
#accordion h3{
	float: right;
	height: 100%;
	padding-right: 8px;
}
#accordion .accordion-pergunta , #accordion .accordion-resposta{
	font-size: 14px;
    font-weight: 400;
	font-family: Nunito Sans;
	padding: 20px 0;
    padding-left: 30px;
	padding-inline: 30px;
	border-left-width: 5px;
	border-left-color: #DA1A47;
	border-style: solid;
}
#accordion .accordion-pergunta{
	display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	position: relative;
    background: #413F3F;
    margin-bottom: 0;
	margin-top: 14px;
	font-weight: 600;
	cursor: pointer;
}
#accordion .accordion-resposta{
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
/* Ferramentas */
#home-ferramentas{
	padding-block: 5rem;
}
#home-ferramentas .page{
	align-items:start;
}
#home-ferramentas h1{
	font-size: 32px;
	font-weight: bold;
}
#home-ferramentas .line{
	width: 40%;
	height: 3px;
	background: #ffffffac;
	border-radius: 4px;
	margin-bottom: 14px;
}
#home-ferramentas .ferramentas-text i{
	font-size: 120px;
	color: white;
	position: relative;
	opacity: 0.6;
}
#home-ferramentas .half {
    width: 50%;
}
#home-ferramentas .ferramentas-text{
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	width: 100%;
    height: 315px;
    width: 600px;
	padding-block: 4rem;
	background: linear-gradient(90deg, var(--ferramenta-bg-color1), var(--ferramenta-bg-color2) 100%);
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	box-shadow: 4px 13px 11px -1px rgba(13, 13, 13, 0.75);
	-webkit-box-shadow: 4px 13px 11px -1px rgba(13, 13, 13, 0.75);
	-moz-box-shadow: 4px 13px 11px -1px rgba(13, 13, 13, 0.75);
}
#home-ferramentas .blocoswipertexto{
	margin-top: 2rem;
}
#home-ferramentas .ferramentas-notebook{
	position: relative;
    z-index: 2;
    height: 320px;
	width: 600px;
	background-image: url('images/slides/background.jpg')
}
#home-ferramentas .ferramenta-imagem{
	height: 350px;
}
#home-ferramentas .pagination-ferramentas{
	display: flex;
	z-index: 4;
}
#home-ferramentas .pagination-ferramentas i{
	position: relative;
	opacity: 0.8;
}
#home-ferramentas .pagination-ferramentas button{
	border:none;
}
#home-ferramentas .swiper-ferramentas{
	overflow: hidden;
	
}
#home-ferramentas .ferramentas-notebook-bg {
	position:absolute;
	z-index:-3;
	background-size: cover;
    background-repeat: no-repeat;
}
#home-ferramentas .slider{
	display: flex;
    justify-content: start;
}
@media screen and (max-width:1200px){
	#home-ferramentas .page{
		justify-content: center;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	#home-ferramentas .ferramentas-notebook{
		height: 440px;
	}
	#home-ferramentas .half{
		width: 100%;
		display: flex;
    	justify-content: center;
		align-items: center;
	}
	#home-ferramentas{
		overflow:visible;
	}
	#home-ferramentas .ferramentas-text{
		margin-bottom: 0;
		width: 872px;
	}
	#home-ferramentas .pagination-ferramentas{
		bottom:auto;
		top:-60px;
		left:200px;
	}
	#home-ferramentas .swiper{
		width: 70%;
		border-radius: 10px;
	}
	
	#home-ferramentas .half{
		flex-direction: column;
	}
}
@media screen and (max-width:748px){
	#home-ferramentas .pagination-ferramentas{
		left: 116px;
	}
	#home-ferramentas .swiper{
		width: 80%;
	}
	#home-ferramentas .ferramentas-text i {
		font-size: 80px;
	}
}
@media screen and (max-width:640px){
	#home-ferramentas .ferramentas-notebook{
		width: 420px;
		height: 299px;
	}
}
@media screen and (max-width:450px){
	#home-ferramentas .ferramentas-text{
		height: 251px;
	}
	#home-ferramentas .swiper{
		width: 90%;
	}
	#home-ferramentas .ferramentas-notebook{
		width: 330px;
		height: 228px;
	}
	#home-ferramentas .ferramentas-text{
		margin-top: 0;
	}
	#home-ferramentas .ferramentas-text i {
		display: none;	
	}
}
@media screen and (max-width:370px){
	#home-ferramentas .ferramentas-notebook{
		width: 274px;
		height: 184px;
	}
}




/* 
 * COLORBOX THEME
 */

#cboxMiddleLeft, #cboxMiddleRight, #cboxContent, #cboxBottomLeft, #cboxBottomCenter, #cboxBottomRight, #cboxTopLeft, #cboxTopCenter, #cboxTopRight, #cboxContent, #cboxLoadedContent, #cboxLoadedContent iframe, #cboxLoadingOverlay{
	background: #222222 !important;
	border:0 !important;
}
#cboxLoadingGraphic{
	background:none !important;
	background-image: url('../images/fake-loader.svg') !important;
	background-size:40px 40px !important;
	background-repeat:no-repeat !important;
	background-position:center center !important;
}
#cboxTopLeft{
	border-top-left-radius:8px;
}
#cboxTopRight{
	border-top-right-radius:8px;
}
#cboxBottomLeft{
	border-bottom-left-radius:8px;
}
#cboxBottomRight{
	border-bottom-right-radius:8px;
}
#cboxTitle, #cboxCurrent{
	font-size:14px;
	font-family: 'Nunito Sans', sans-serif;
}
#cboxPrevious, #cboxNext, #cboxClose{
	position:relative;
	background: rgba(255,255,255,0.2) !important;
	border-radius:50%;
}
#cboxPrevious::after, #cboxNext::after, #cboxClose::after{
	content:'';
    top: 0 !important;
    left: 0 !important;
    border-radius: 20px;
    position: absolute;
	width: 12px;
	height: 12px;
    margin-left: 6px;
    margin-top: 6px;
	z-index: 8;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	
}
#cboxPrevious::after{
	background-image: url('../images/angle-left.svg');
}
#cboxNext::after{
	background-image: url('../images/angle-right.svg');
}
#cboxClose::after{
	background-image: url('../images/xmark.svg');
}