.is_disabled {
	pointer-events: none;
}


body
{
	margin:0;
	padding:0;
	font-family: Calibri, Arial, sans-serif;
}


.noselect
{
	-webkit-touch-callout: none;  /* iPhone OS, Safari */
    -webkit-user-select: none;    /* Chrome, Safari 3 */
    -khtml-user-select: none;     /* Safari 2 */
    -moz-user-select: none;       /* Firefox */
    -ms-user-select: none;        /* IE10+ */
    user-select: none;
}

.toastBox
{
	position:fixed !important;
	bottom:20px;
	right:20px;
	z-index:9999;
}

.menu
{
	width:100%;
	height:115px;
	display:flex;
	justify-content:center;
	align-items:center;
	position:fixed;
	z-index:999;
	transition:all 0.3s;
	top: 0;
}

.menu.light {
	filter: invert(100%);
}

.menu .counters
{
	width:1200px;
	height:100%;
	display:flex;
}

.menu .counters .div1
{
	display:flex;
	justify-content:start;
	align-items:center;
	width:20%;
	height:100%;
}

.menu .counters .div1 a
{
	display:flex;
	justify-content:start;
	align-items:center;
	height:50%;
}

.menu .counters .div1 img
{
	height:100%;
}

.menu .counters .div2
{
	width:80%;
	height:100%;
	display:flex;
	justify-content:end;
	align-items:center;
}

.menu .counters .div2 a
{
	text-decoration:none;
	color:black;
}

.menu.light .counters .div2 a {font-weight: 700;}

.menu .counters .div3
{
	width:80%;
	height:100%;
	justify-content:end;
	align-items:center;
	display:none;
}






.littleMenu 
{
	width:100px; 
	height:40px; 
	display:flex; 
	justify-content:center; 
	align-items:center;
}


.linhadois 
{
	width:50px; 
	height:40px; 
	display:flex;
	justify-content:center; 
	align-items:center; 
	flex-direction:column; 
	position:absolute; 
	cursor:pointer;

}

.linhatres 
{	
	width:50px; 
	height:40px; 
	display:flex; 
	justify-content:space-evenly; 
	align-items:center; 
	flex-direction:column; 
	cursor:pointer;
	position:absolute;
}

.linha1 
{
	width:30px; 
	height:2px; 
	display:flex; 
	background-color:#000000; 
	border-radius:1px; 
	cursor:pointer;
}

.linha2 
{
	width:30px; 
	height:2px; 
	display:flex; 
	border-radius:1px; 
	position:absolute; 
	background-color:#000000; 
	cursor:pointer;
}









.menutitletop
{
	padding:10px 20px;
	cursor:pointer;
	display:flex;
	justify-content:center;
	align-items:center;
	margin:0px 10px;
}

.menutitletop img
{
	height:15px;
	margin-right:5px;
}

.accessButton
{
	border:1px solid rgba(0,0,0,0.4);
	border-radius:10px;
}

.section01
{
	width:100%;
	min-height:600px;
	position:relative;
}

section canvas
{
	position:absolute;
	width:100%;
	height:100%;
	z-index:1;
}



.section01 .container
{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	z-index:2;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 20%);
	background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 20%);
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 20%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
	display:flex;
	justify-content:center;
	align-items:center;
}


.section01 .container .controls 
{
	height:100%;
	width:1200px;
	display:flex;
}

.section01 .container .controls .controlsText
{
	height:100%;
	width:50%;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:left;
}

.section01 .container .controls .controlsText h1
{
	margin:10px;
	font-size:48px;
}

.section01 .container .controls .controlsText h2
{
	margin:10px;
}

.section01 .container .controls .controlsText p
{
	margin:10px;
}

.section01 .container .controls .controlsImg
{
	position:relative;
	height:100%;
	width:50%;
	display:flex;
	justify-content:center;
	align-items:end;
}






.carousel 
{
  position: absolute;
  top: calc(50% - 125px);
  left: 100px;
  width: 350px;
  height: 350px;
  margin: 0;
  -webkit-perspective: 800px;
  perspective: 800px;
}

.carousel-content 
{
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(-182px) rotateY(0);
  transform: translateZ(-182px) rotateY(0);
  -webkit-animation: carousel 10s infinite cubic-bezier(1, 0.015, 0.295, 1.225) forwards;
  animation: carousel 10s infinite cubic-bezier(1, 0.015, 0.295, 1.225) forwards;
}

.carousel-item 
{
  position: absolute;
  top: 0;
  left: 0;
  width: 350px;
  height: 350px;
  border-radius: 6px;
}

.carousel-item img
{
  height:100%;
}

.carousel-item:nth-child(1) 
{
  -webkit-transform: rotateY(0) translateZ(182px);
  transform: rotateY(0) translateZ(182px);
}

.carousel-item:nth-child(2) 
{
  -webkit-transform: rotateY(120deg) translateZ(182px);
  transform: rotateY(120deg) translateZ(182px);
}

.carousel-item:nth-child(3) 
{
  -webkit-transform: rotateY(240deg) translateZ(182px);
  transform: rotateY(240deg) translateZ(182px);
}
 @-webkit-keyframes 
carousel {  0%, 17.5% {
 -webkit-transform: translateZ(-182px) rotateY(0);
 transform: translateZ(-182px) rotateY(0);
}
 27.5%, 45% {
 -webkit-transform: translateZ(-182px) rotateY(-120deg);
 transform: translateZ(-182px) rotateY(-120deg);
}
 55%, 72.5% {
 -webkit-transform: translateZ(-182px) rotateY(-240deg);
 transform: translateZ(-182px) rotateY(-240deg);
}
 82.5%, 100% {
 -webkit-transform: translateZ(-182px) rotateY(-360deg);
 transform: translateZ(-182px) rotateY(-360deg);
}
}
 @keyframes 
carousel {  0%, 17.5% {
 -webkit-transform: translateZ(-182px) rotateY(0);
 transform: translateZ(-182px) rotateY(0);
}
 27.5%, 45% {
 -webkit-transform: translateZ(-182px) rotateY(-120deg);
 transform: translateZ(-182px) rotateY(-120deg);
}
 55%, 72.5% {
 -webkit-transform: translateZ(-182px) rotateY(-240deg);
 transform: translateZ(-182px) rotateY(-240deg);
}
 82.5%, 100% {
 -webkit-transform: translateZ(-182px) rotateY(-360deg);
 transform: translateZ(-182px) rotateY(-360deg);
}
}



.section02
{
	position:relative;
	width:100%;
	min-height:300px;
	display:flex;
	justify-content:center;
	align-items:center;
	margin:200px 0px;
}

.section02 .division
{
	width:100%;
	height:400px;
}

.section02 .container
{
	position:absolute;
	width:1200px;
	height:400px;
	display:flex;
	justify-content:center;
	align-items:center;
}

.section02 .container .div1
{
	height:100%;
	width:50%;
	padding:0px 110px;
}

.section02 .container .div1 .controls
{
	height:calc(100% - 40px);
	display:flex;
	justify-content:center;
	align-items:start;
	flex-direction:column;
	padding:20px;
}

.section02 .container .div1 .controls p
{
	margin:0;
	color:#FFFFFF;
}

.section02 .container .div1 .controls h2
{
	font-size:36px;
	margin:0;
	color:#FFFFFF;
	margin:10px 0px;
}

.section02 .container .div1 .controls button
{
	background-color:transparent;
	border:2px solid #FFFFFF;
	border-radius:10px;
	padding:10px 20px;
	margin:20px 0px;
	color:#FFFFFF;
	font-size:18px;
	cursor:pointer;
	transition: all 0.3s;
}

.section02 .container .div1 .controls button:hover
{
	color:#000000;
	background-color:white;
	transition: all 0.3s;
}

.section02 .container .div1 .controls .invertido
{
	border:2px solid #000000;
	color:#000000;
}

.section02 .container .div1 .controls .invertido:hover
{
	color:#FFFFFF;
	background-color:#000000;
}

.section02 .container .div2
{
	height:100%;
	width:50%;
	display:flex;
	justify-content:center;
	align-items:center;
}

.section02 .container .div2 img
{
	height:120%;
}



.section03
{
	position:relative;
	width:100%;
	min-height:300px;
	display:flex;
	justify-content:center;
	align-items:center;
	margin:200px 0px;
}

.section03 .division
{
	width:100%;
	height:400px;
}

.section03 .container
{
	position:absolute;
	width:1200px;
	height:400px;
	display:flex;
	justify-content:center;
	align-items:center;
}


.section03 .container .div1
{
	height:100%;
	width:50%;
	padding:0px 110px;
}


.section03 .container .div1 .controls
{
	height:calc(100% - 40px);
	display:flex;
	justify-content:center;
	align-items:start;
	flex-direction:column;
	padding:20px;
}

.section03 .container .div1 .controls p
{
	margin:0;
	color:#FFFFFF;
}

.section03 .container .div1 .controls h2
{
	font-size:36px;
	margin:0;
	color:#FFFFFF;
	margin:10px 0px;
}

.section03 .container .div1 .controls button
{
	background-color:transparent;
	border:2px solid #FFFFFF;
	border-radius:10px;
	padding:10px 20px;
	margin:20px 0px;
	color:#FFFFFF;
	font-size:18px;
	cursor:pointer;
	transition: all 0.3s;
}

.section03 .container .div1 .controls button:hover
{
	color:#000000;
	background-color:white;
	transition: all 0.3s;
}


.section03 .container .div1 .controls .invertido
{
	border:2px solid #000000;
	color:#000000;
}

.section03 .container .div1 .controls .invertido:hover
{
	color:#FFFFFF;
	background-color:#000000;
}

.section03 .container .div2
{
	height:100%;
	width:50%;
}

.section03 .container .div2
{
	height:100%;
	width:50%;
	display:flex;
	justify-content:center;
	align-items:center;
}

.section03 .container .div2 img
{
	height:120%;
}



.sectionFooter
{
	background-color:black;
	width:100%;
	min-height:500px;
}


.planoscontainertop
{
	width:100%;
	height:100%;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
}


.planoscontainertop .thisPlanoTop
{
	background-color:rgba(0,0,0,0.05);
	width:80%;
	height:50px;
	margin:5px;
	border-radius:10px;
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:5px;
	
}

.planoscontainertop .thisPlanoTop img
{
	height:80%;
	
}

.planoscontainertop .thisPlanoTop font
{
	text-transform:uppercase;
	letter-spacing:4px;
}

.thisPlanoTop .StyleTiper
{
	width:20px;
	height:20px;
	border-radius:50px;
	box-shadow:1px 1px 2px 2px rgba(0,0,0,0.2);
	margin-right:2px;
}

.gradient-bronze
{
    height: 100%;
    width: 300%; /* Mais largo para permitir o movimento */
    background: linear-gradient(125deg, 
        #d4a76b, 
        #f2c29d, 
        #d4a76b,
        #b38637, 
        #965423, 
        #b38637,
        #d4a76b, 
        #f2c29d, 
        #d4a76b);
    background-size: 300% 100%; /* Aumentando o tamanho para criar a ilusão de movimento */
    animation: gradientAnimation 5s infinite linear; /* linear garante uma transição constante */
}

.gradient-prata
{
    height: 100%;
    width: 300%; /* Mais largo para permitir o movimento */
    background: linear-gradient(125deg, 
        #c0c0c0, 
        #e5e5e5, 
        #c0c0c0,
        #a8a8a8, 
        #8c8c8c, 
        #a8a8a8,
        #c0c0c0, 
        #e5e5e5, 
        #c0c0c0);
    background-size: 300% 100%; /* Aumentando o tamanho para criar a ilusão de movimento */
    animation: gradientAnimation 5s infinite linear; /* linear garante uma transição constante */
}


.gradient-ouro
{
    height: 100%;
    width: 300%; /* Mais largo para permitir o movimento */
    background: linear-gradient(125deg, 
        #ffd700, 
        #ffec8b, 
        #ffd700,
        #d4af37, 
        #b8860b, 
        #d4af37,
        #ffd700, 
        #ffec8b, 
        #ffd700);
    background-size: 300% 100%; /* Aumentando o tamanho para criar a ilusão de movimento */
    animation: gradientAnimation 5s infinite linear; /* linear garante uma transição constante */
}

.gradient-platina
{
    height: 100%;
    width: 300%; /* Mais largo para permitir o movimento */
    background: linear-gradient(125deg, 
        #7cb9aa, 
        #a7ddce, 
        #7cb9aa,
        #5a9d94, 
        #4c807f, 
        #5a9d94,
        #7cb9aa, 
        #a7ddce, 
        #7cb9aa);
    background-size: 300% 100%; /* Aumentando o tamanho para criar a ilusão de movimento */
    animation: gradientAnimation 5s infinite linear; /* linear garante uma transição constante */
}

.gradient-diamante
{
    height: 100%;
    width: 300%; /* Mais largo para permitir o movimento */
    background: linear-gradient(125deg, 
        #ffffff, 
        #e0e0e0, 
        #ffffff,
        #ffffff, 
        #add8ff,   /* Rosa */
        #ffffff,
        #f7c8e6,   /* Rosa */
        #d5a8ff,   /* Roxo */
        #add8ff,   /* Azul */
        #ffffff, 
        #e0e0e0, 
        #ffffff);
    background-size: 300% 100%; /* Aumentando o tamanho para criar a ilusão de movimento */
    animation: gradientAnimation 5s infinite linear; /* linear garante uma transição constante */
}

@keyframes gradientAnimation {
    0% { background-position: 0% 0; }
    100% { background-position: -300% 0; } /* Ajustando para -200% para completar o movimento */
}





.sectionPlanos
{
	position:relative;
	width:100%;
	min-height:500px;
	background-color:#FFFFFF;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	margin-bottom:100px;
}

.sectionPlanos .Container
{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	width:100%;
}

.sectionPlanos .ContainerPlano
{
	position:relative;
	background-color:white;
	min-height:500px;
	width:200px;
	margin:10px;
	border-radius:10px;
	box-shadow:1px 2px 3px 1px rgba(0,0,0,0.1);
	padding:30px;
	border:1px solid rgba(0,0,0,0.2);
}



.containerValorProjeto
{
	position:relative;
	height:51px;
	width:100%;
	display:flex;
	margin-top:40px;
}

.containerValorProjeto .step1
{
	position:absolute;
	font-size:22px;
	left:3px;
	top:5px;
}

.containerValorProjeto .step2
{
	position:absolute;
	font-size:42px;
	left:30px;
}

.containerValorProjeto .step3
{
	position:absolute;
	font-size:18px;
	left:99px;
	bottom:6px;
	color:rgba(0,0,0,0.5);
}

.containerValorProjeto .imgP
{
	position:absolute;
	right:0;
	top:-25px;
	width:50px;
	height:50px;
	display:flex;
	justify-content:center;
	align-items:center;
}

.containerValorProjeto svg
{
	height:100%;
}

.ContainerPlano .ButtonsDiv
{
	width:100%;
	height:70px;
	display:flex;
	justify-content:center;
	align-items:center;
}

.ContainerPlano .button01
{
	padding:15px 30px;
	color:#FFF;
	background-color:#344253;
	cursor:pointer;
	border-radius:50px;
	font-size:12px;
	font-weight:bold;
	text-transform:uppercase;
	text-decoration:none;
}

.checklistCover
{
	width:100%;
	min-height:250px;
}

.checklistCover .c-list
{
	width:100%;
	height:30px;
	margin:2px 0px;
	display:flex;
	justify-content:start;
	align-items:center;
}

.checklistCover .c-list .checkDiv
{
	width:20px;
	height:20px;
	border-radius:30px;
	margin-left:5px;
	margin-right:5px;
	display:flex;
	justify-content:center;
	align-items:center;
}

.checklistCover .c-list .checkDiv img
{
	height:80%;
}

.checklistCover .c-list .infoList
{
	font-size:14px;
}

.ContainerPlano.black
{
	position:relative;
	background-color:#1f2a3b;
	color:#FFF;
}

.ContainerPlano.black h2
{
	color:#FFF;
}

.ContainerPlano.black p
{
	width:200px;
	color:#FFF;
}

.ContainerPlano.black .step3
{
	color:#FFF;
}

.ContainerPlano.black .ButtonsDiv .button01
{
	background-color:#19c0ff;
}

.ContainerPlano.black .popularClass
{
	position:absolute;
	left:30px;
	top:20px;
	padding:5px 10px;
	background-color:rgba(25,192,255,0.5);
	color:#d1f2ff;
	border-radius:30px;
	font-size:10px;
}

.ContainerPlano.black .checkDiv
{
	background-color:#19c0ff;
}

.ContainerPlano.black:hover .checkDiv
{
	background-color:#9060f0;
}

.ContainerPlano.black:hover .popularClass
{
	background-color:#9060f0;
	color:#FFF;
}

.ContainerPlano.black:hover h2
{
	color:#bc9dfa;
}

.ContainerPlano.black:hover .ButtonsDiv .button01
{
	background-color:#9060f0;
}

.ContainerPlano.black:hover .changeColor2
{
  fill: #9060f0 !important;
}

.ContainerPlano.black:hover
{
  border-color: #9060f0 !important;
}


.floatingMetals
{
	position:absolute;
	top:20px;
	right:20px;
	
}

.sectionCreateNewPlan
{
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	margin-bottom:150px;
}

.sectionCreateNewPlan h2
{
	font-size:36px;
	margin:0;
}
.sectionCreateNewPlan h3
{
	font-size:26px;
	margin:0;
}

.sectionCreateNewPlan button
{
	margin:20px;
	background-color:#344253;
	color:#FFFFFF;
	padding:20px 40px;
	font-size:12px;
	text-transform:uppercase;
	border:none;
	border-radius:50px;
	cursor:pointer;
}

.controlBlogImg
{
	position:relative;
	height:100%;
	width:100%;
	display:flex;
	justify-content:center;
	align-items:center;
}

.controlBlogImg img
{
	height:80%;
	position:absolute;
}



.scrolling-background 
{
	margin-top:-145px;
	margin-left:61px;
	position:absolute;
    min-width: 210px;
    height: 160px;
    overflow: hidden;
    background-image: url('../img/banners/text.webp');
    background-size: cover;
    animation: scrolling 5s linear infinite;
	transform: skewY(20deg);
}

@keyframes scrolling {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 160px; /* Este valor deve ser igual ao height da sua div */
    }
}


.sectionBlogsLittle
{
	display:flex;
	justify-content:center;
	align-items:center;
	width:100%;
	height:auto;
	flex-wrap:wrap;
	margin-bottom:150px;
}

.sectionBlogsLittle a
{
	text-decoration:none;
	color:black;
	margin:20px;
}

.sectionBlogsLittle .thisBlogContent
{
	position:relative;
	width:250px;
	height:380px;
	
	border-radius:10px;
	border:1px solid rgba(0,0,0,0.2);
	display:flex;
	justify-content:start;
	align-items:center;
	flex-direction:column;
}

.sectionBlogsLittle .thisBlogContent img
{
	height:150px;
	width:100%;
	object-fit:cover;
	border-radius:10px 10px 0px 0px;
}

.sectionBlogsLittle .thisBlogContent h1
{
	font-size:18px;
    height: 45px;
    overflow: hidden;
    white-space: normal; /* Permite a quebra de linha */
    text-overflow: ellipsis; /* Adiciona a elipse no final */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Número de linhas antes de mostrar a elipse */
    -webkit-box-orient: vertical;
	margin:10px;
}

.sectionBlogsLittle .thisBlogContent p 
{
    height: 155px;
    overflow: hidden;
    white-space: normal; /* Permite a quebra de linha */
    text-overflow: ellipsis; /* Adiciona a elipse no final */
    display: -webkit-box;
    -webkit-line-clamp: 8; /* Número de linhas antes de mostrar a elipse */
    -webkit-box-orient: vertical;
	margin:0px 10px;
}


.sectionBlogsLittle .thisBlogContent:hover
{
    transform:scale(1.05);
	transition:all 0.5s;
}


	/* Estilos do Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer a {
    color: #d4d4d4;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    color: #a8a8a8;
}

.footer-container {
    width: 80%;
    margin: auto;
    font-size: 0.8em;
}

@media (max-width: 600px) {
    .footer-container {
        width: 95%;
    }
}


.navigation-buttons {
    margin-top: 40px;
    text-align: center; /* Centraliza os botões */
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    background-color: #007bff; /* Cor azul padrão para botões */
    color: white;
    text-decoration: none;
    border-radius: 5px; /* Bordas arredondadas */
    transition: background-color 0.3s; /* Transição suave para o hover */
}

.button:hover {
    background-color: #0056b3; /* Cor mais escura no hover */
}





.contatocontainertop
{
	width:100%;
	height:100%;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
}


.floatingwhatsapp
{
	width:400px;
	height:350px;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	box-shadow:4px 4px 5px 2px rgba(0,0,0,0.2);
	border-radius:10px;
	overflow:hidden;
}

.floatingwhatsapp .top
{
	width:100%;
	height:50px;
	background-color:#008069;
	display:flex;
	justify-content:start;
	align-items:center;
	color:white;
	font-size:18px;
}

.floatingwhatsapp .top img
{
	height:70%;
	border-radius:50px;
	margin:0px 10px;
}

.floatingwhatsapp .middle
{
	width:100%;
	height:calc(100% - 100px);
	background-image: url(../img/contato/bg.webp);
    background-repeat: no-repeat, repeat;
    background-size: cover;
    background-position: 100% 70%;
	background-color:#f0edeb;
	display:flex;
	justify-content:end;
	align-items:start;
	flex-direction:column;
}

.floatingwhatsapp .middle .msgUpperCome
{
	background-color:white;
	margin:20px;
	padding:10px;
	font-size:20px;
	border-radius:0px 10px 10px 10px;
	position:relative;
	margin-left:40px;
}

.floatingwhatsapp .middle .msgUpperCome font
{
	color:rgba(0,0,0,0.5);
	font-size:12px;
	padding-left:10px;
}


.floatingwhatsapp .middle .msgUpperCome .triangle 
{
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #FFF;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%, 0 100%);
    transform: rotate(270deg);
    top: 0;
    left: -20px;
}

.floatingwhatsapp .bottom
{
	width:100%;
	height:50px;
	background-color:#FFFFFF;
	border-top:1px solid rgba(0,0,0,0.1);
	position:relative;
}

.floatingwhatsapp .bottom input
{
	width:calc(100% - 70px);
	height:100%;
	padding:0px 50px 0px 20px;
	font-size:18px;
	border:none;
}

.floatingwhatsapp .bottom .sendTextWtsp
{
	position:absolute;
	width:50px;
	height:50px;
	right:0;
	top:0;
	display:flex;
	justify-content:center;
	align-items:center;
	cursor:pointer;
	display:none;
}

.floatingwhatsapp .bottom .sendTextWtsp img
{
	height:25px;
	background-color:#008069;
	border-radius:50px;
	padding:5px;
}

.floatingwhatsapp .bottom input:focus
{
	outline:none;
}


.sectionPerguntas
{
	width:100%;
	height:auto;
	display:flex;
	justify-content:center;
	align-items:center;
}

.sectionPerguntas .Container
{
	width:1200px;
	height:auto;
}

.sectionPerguntas .Container h3
{
	margin-left:10px;
}

.sectionPerguntas .Container .ThisQuestion
{
	margin:10px;
	width:calc(100% - 20px);
	box-shadow:1px 1px 1px 1px rgba(0,0,0,0.5);
}

.sectionPerguntas .Container .ThisQuestion .Question
{
	width:calc(100% - 20px);
	padding:10px;
	background-color:white;
	cursor:pointer;
	font-size:18px;
	display:flex;
	align-items:center;
}

.sectionPerguntas .Container .ThisQuestion .Question img
{
	height:20px;
	margin-right:10px;
}

.sectionPerguntas .Container .ThisQuestion .Answer
{
	width:calc(100% - 20px);
	background-color:rgba(0,0,0,0.2);
	padding:10px;
	display:none;
}

.findContact
{
	width:100%;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	margin-top:100px;
	text-align:center;
}

.findContact h2
{
	margin-bottom:0;
}

.findContact h3
{
	margin-top:0;
}




.contatocontainertop
{
	width:100%;
	height:100%;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:row;
}

.contatocontainertop a
{
	width:200px;
	text-decoration:none;
	color:black;
	margin:10px;
}

.contatocontainertop a:hover
{
	transform:scale(1.05);
}

.contatocontainertop a .thisContatoTop
{
	background-color:rgba(0,0,0,0.05);
	height:40px;
	border-radius:10px;
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:10px;
}


.contatocontainertop .thisContatoTop img
{
	height:60%;
	
}

.contatocontainertop .thisContatoTop font
{
	text-transform:uppercase;
	letter-spacing:2px;
}



.sectionAcesso
{
	width:100%;
	height:100vh;
	display:flex;
}

.DivSeparate
{
	height:100%;
	display:flex;
}


.DivSeparate.bImg
{	
	display:flex;
	justify-content:end;
	position:relative;
	height:100%;
	width:50%;
	align-items:center;
}

.DivSeparate.bImg .blockImgShowOff
{
	height:584px;
	width:465px;
	position:relative;
	background-image: url(../img/creative/backbannerphone.png);
}

.DivSeparate.bImg .blockImgShowOff .getfimgcla
{	
	position:absolute;
	right:60px;
	top:25px;
}

.DivSeparate.bImputs
{	
	height:calc(100% - 60px);
	width:50%;
	padding:30px;
	justify-content:start;
	align-items:center;
	
}


.DivSeparate.bImputs .thisContents
{
	position:relative;
	height:calc(100% - 60px);
	width:100%;
	box-shadow:5px 5px 10px 3px rgba(0,0,0,0.1);
	border-radius:5px;
	display:flex;
	justify-content:flex-start;
	align-items:center;
	overflow:hidden;
	max-width:500px;
	border-radius:20px 20px 20px 20px;
	flex-shrink:0;
}

.thisContentsBody 
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 100%;
    height: 100%;
	transition: all .2s;
	text-align: center;
	background-color:#FFFFFF;
}

.DivSeparate.bImputs .thisContents .logotop
{
	position:absolute;
	top:10px;
	left:10px;
	height:50px;
	width:50px;
	display:flex;
	justify-content:center;
	align-items:center;
}

.DivSeparate.bImputs .thisContents .voltarBtn
{
	position:absolute;
	top:10px;
	right:10px;
	display:flex;
	justify-content:center;
	align-items:center;
	padding:10px 20px;
	text-transform:uppercase;
	font-weight:bold;
	color:black;
}

.DivSeparate.bImputs .thisContents .logotop a
{
	height:80%;
}

.DivSeparate.bImputs .thisContents .logotop a img
{
	height:100%;
}

.DivSeparate.bImputs .thisContents h1
{
}

.DivSeparate.bImputs .thisContents .Inputs_form {
	display: flex;
	justify-content:center;
	width: 100%;
	padding: 10px;
}

.DivSeparate.bImputs .thisContents .newInputGs
{
	position:relative;
	width:60%;
	height:50px;
	margin:10px 0px;
	border-radius:5px;
	border:2px solid rgba(0,0,0,0.2);
}

.DivSeparate.bImputs .thisContents .newInputGs input
{
	width:calc(100% - 20px);
	padding:0;
	border:0;
	height:100%;
	background-color:transparent;
	font-size:16px;
	padding:0px 10px 0px 10px;
}

.DivSeparate.bImputs .thisContents .newInputGs input#password
{
	width:calc(100% - 70px);
	padding:0px 50px 0px 20px;
}

.DivSeparate.bImputs .thisContents .newInputGs input:focus
{
	outline:none;
}

.DivSeparate.bImputs .thisContents .newInputGs:has(input.is-invalid)
{
	border-color:#dc3545c2!important;
}

.DivSeparate.bImputs .thisContents .newInputGs:has(input.is-invalid) span
{
	color:#dc3545;
}


.DivSeparate.bImputs .thisContents .newInputGs:has(input:disabled)
{
	border-color: #c3c3c3!important;
	transition:.1s;
}

.DivSeparate.bImputs .thisContents .newInputGs input:disabled
{
	background: transparent!important;
	color: #c3c3c3!important;
}
.DivSeparate.bImputs .thisContents .newInputGs:has(input:disabled) span
{
	color: #c3c3c3;
	transition:.1s;
}

.DivSeparate.bImputs .thisContents .newInputGs .invalid {
    position: absolute;
    top: 1px;
    right: 2px;
    padding: 0;
    background: #dc3545;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: .9;
    width: 0;
    padding: 1px 0;
    text-wrap: nowrap;
	transition: all .1s;
	overflow:hidden;
	z-index:1;
}


.DivSeparate.bImputs .thisContents .newInputGs:has(input.is-invalid) .invalid
{
	width: auto;
    padding: 1px 5px;
	transition: all .1s;
}


.DivSeparate.bImputs .thisContents .newInputGs span
{
	position:absolute;
	background-color:white;
	top:-12px;
	left:20px;
	text-transform:uppercase;
	font-weight:bold;
	font-size:12px;
	padding:5px;
}

.DivSeparate.bImputs .thisContents .footb
{
	position:absolute;
	margin-top:100px;
	bottom:0;
	color:rgba(0,0,0,0.5);
	width:100%;
	text-align:center;
}


.textControls
{
	width:60%;
	margin-top:20px;
	text-transform:uppercase;
	font-weight:bold;
	font-size:14px;
	text-align:center;
}

.textControls a
{
	text-decoration:none;
	color:black;
}


.textControls span
{
	text-decoration:none;
	color:black;
	cursor:pointer;
}

.loginGoogleButton
{
	width:60%;
	border-radius:5px;
	border:1px solid rgba(0,0,0,0.2);
}

.loginGoogleButton a
{
	
	padding:15px;
	height:20px;
	width:calc(100% - 40px);
	text-decoration:none;
	color:black;
	display:flex;
	align-items:center;
}

.loginGoogleButton a img
{
	height:90%;
	margin-right:10px;
}

/*.btnAcessAccount
{
	background-color:#3F5F6E;
	padding:10px 50px;
	border:none;
	cursor:pointer;
	border-radius:5px;
	margin-top:20px;
	color:white;
}

.btnAcessAccount:hover
{
	background-color:#2e4a57;
}

.btnAcessAccount:disabled
{
	cursor:default;

}*/

.thisContents button
{
	display:flex;
	align-items:center;
	background-color:#3F5F6E;
	padding:10px 50px;
	border:none;
	cursor:pointer;
	border-radius:5px;
	margin-top:20px;
	color:white;
}

.thisContents button:hover
{
	background-color:#2e4a57;
}

.thisContents button:disabled
{
	cursor:default;
}

.thisContents button img
{
	height: 24px;
    margin: 0 10px;
}




.message_conteiner {
    position: absolute;
    right: 2%;
    bottom: 10%;
    padding: 10px;
    width: 300px;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
	border-radius: 7px;
    background: #ffffff;
    box-shadow: 0.1vh 0.1vh 1vh 0.1vh rgba(0,0,0,.4);
}

.message_conteiner_top {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
}

.message_conteiner_top .icon {
    margin: 0 5px;
    display: flex;
    align-items: center;
}

.message_conteiner_top .icon img {
	height:25px;
}

.message_conteiner_top p {
    margin: 0 10px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.message_conteiner_center {
    display: flex;
    width: 100%;
}

.message_conteiner_center p {
    margin: 0 10px;
    font-size: 16px;
    font-weight: 600;
	opacity:0.5;
}





.loadingLogin
{
	width:150px;
	height:150px;
	justify-content:center;
	align-items:center;
	display:none;
}

.loadingLogin img
{
	height:50%;
}











.MenuRight
{
	width:30vw;
	min-width:360px;
	max-width:400px;
	height:100vh;
	position:fixed;
	top:0;
	right:0;
	z-index:998;
	background-color:white;
	box-shadow:1px 1px 10px 1px rgba(0,0,0,0.4);
	display:none;
	justify-content:start;
	align-items:center;
	flex-direction:column;
	overflow:auto;
	overflow-x:hidden;
}

.MenuRight .Top
{
	display:flex;
	justify-content:center;
	align-items:center;
	min-height:120px;
}

.MenuRight .div2
{
	display:flex;
	justify-content:center;
	align-items:center;
	min-height:120px;
}


.MenuRight .div2
{
	width:80%;
	height:100%;
	display:flex;
	justify-content:start;
	align-items:center;
	flex-direction:column;
	font-size:26px;
}

.MenuRight .div2 a
{
	text-decoration:none;
	color:black;
	margin:10px;
	width:100%;
}


.arrowUp
{
	width:50px;
	height:50px;
	background-color:rgba(0,0,0,0.5);
	position:fixed;
	bottom:30px;
	right:30px;
	cursor:pointer;
	border-radius:10px;
	display:none;
	z-index:997;
}

.arrowUp img
{
	filter:invert(1)
}



.section04
{
	height:100%;
	position:relative;
	display:flex;
	flex-direction:column;
	justify-content: top;
	align-items: center;
	width: 100%;
	padding-bottom:40px;
}

.section04 canvas
{
	position:absolute;
	width:100%;
	height:100%;
	z-index:-1;
}

.sectionAcesso canvas
{
	position:absolute;
	width:100%;
	height:100%;
	z-index:-1;
}

.container02 
{
	display:flex;
	justify-content: center;
	align-items: flex-start;
	width: 1200px;
	height: auto;
}


.control-lg {
	display:flex;
    width: 700px;
    height: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 1vh 0.1vh rgba(0,0,0,.1);
	overflow: hidden;
}

.control-sm {
	display:flex;
	width: 300px;
	height: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 1vh 0.1vh rgba(0,0,0,.1);
	overflow:hidden;
}

.control_col {
	position:relative;
	flex-direction:column;
	padding:40px;
}

.control_menu {
	display: flex;
	flex-direction: column;
	width: 27%;
	height: 100%;
	background: #f4f4f4;
	flex-shrink:0;
}

.control_option {
	position:relative;
	display: flex;
	align-items: center;
	width: 100%;
	height:60px;
	background:transparent;
	cursor:pointer;
}

.control_option .opt_select {
	opacity:0;
    width: 5px;
    height: 0;
    border-radius: 50px;
	margin-left: 10px;
	transition: all .3s;
}

.control_option .opt_icon {
	display: flex;
	justify-content: center;
	align-items: center;
    width: auto;
    height: 80%;
    padding: 0 10px;
}

.control_option .opt_icon img {
    width: auto;
    height: 70%;
    object-fit: cover;
}

.control_option .opt_icon svg {
    width: auto;
    height: 70%;
}

.control_option .opt_name {
    width: 50%;
    font-size: 18px;
    font-weight: 500;
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    color: #959595;
	text-transform: unset;
}

.control_option span {
    position: absolute;
    right: 20px;
    opacity: 0;
	transition:.3s;
}

.control_option span svg {
	width: 25px;
    height: auto;
}


.control_option.selected {
	background:#ffffff;
}


.control_option.selected .opt_select {
	opacity:1;
    height: 80%;
	transition: all .3s;
}

.control_option.selected .opt_name {
	font-weight: 700;
}

.control_option.selected span {
    right: 5px;
    opacity: 1;
	transition:.3s;
}


.control_option.black.selected {
	background:#1f2a3b;
}

.control_option.black.selected .opt_name {
	color:#ffffff;
}

.control_option.black.selected span {
	opacity:1;
	fill:#ffffff;
}


.control_center {
	display: flex;
	width: 100%;
	height: auto;
}

.control_center::-webkit-scrollbar {
	width: 2px;
	background-color: transparent;
}


.control_center[data-infoCard] {
	display:none;
}

.control_center.selected[data-infoCard] {
	display:flex;
	flex-direction: column;
}

.credt_card_top {
	display: flex;
	justify-content:center;
	align-items: center;
	width: 100%;
	height: 300px;
}

.preview_card {
	position:relative;
	display: flex;
	justify-content:center;
	align-items: center;
	width: 300px;
	height: 180px;
	border-radius: 15px;
	background: rgb(223,223,223);
	background: linear-gradient(160deg, rgba(223,223,223,1) 0%, rgba(227,227,227,1) 43%, rgba(250,250,250,1) 100%);
	box-shadow: 0 0 1vh .1vh rgba(0,0,0,.1);
}


.preview_nCard {
    position: absolute;
    top: 45px;
    font-size: 26px;
    letter-spacing: 2px;
}

.preview_name {
    position: absolute;
    bottom: 15px;
    left: 19px;
    font-size: 19px;
	text-transform: uppercase;
}


.preview_val {
    position: absolute;
    top: 100px;
    left: 19px;
    font-size: 15px;
    width: 55px;
    height: 25px;
	font-size: 19px;
}

.preview_val::after {
	content: "VALIDADE"; 
	position: absolute;
	top: -14px;
	left: 1px;
	font-size: 14px;
}

.preview_cvc {
    position: absolute;
    top: 100px;
    left: 90px;
    font-size: 15px;
    width: 55px;
    height: 25px;
	font-size: 19px;
}

.preview_cvc::after {
	content: "CVC"; 
	position: absolute;
	top: -14px;
	left: 1px;
	font-size: 14px;
}

.preview_icon {
    position: absolute;
    top: 10px;
    left: 17px;
    height: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.preview_icon img {
	height:100%;
}


.credt_card_center {
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;
	width: 100%;
	height: auto;
}



.card_input_row 
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 80px);
}

.card_input {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 100px);
    border-bottom: 2px solid rgba(0,0,0,.2);
    margin: 0 10px 20px 10px;
    transition: all .2s;
}

.card_input_row .card_input
{
    width: 100%;
}

.card_input.focus {
    border-color: #1a73e8;
    transition: all .2s;
}

.card_input label {
    position: absolute;
    top: 13px;
    left: 0;
    font-size: 15px;
    color: rgba(0,0,0,.5);
    transition: all .2s;
}

.card_input.focus label {
    top: -5px;
    left: 10px;
    font-size: 13px;
    color: #1a73e8;
    transition: all .2s;
}

.card_input input {
    width: 100%;
    height: 40px;
    border: none;
    padding: 0 10px;
    padding-top: 10px;
    background: transparent;
    z-index: 1;
}


.card_input:has(input.password) .eye {
	position: absolute;
	right:0 ;
	width: 30px;
	height: 30px;
	background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size:22px ;
	opacity: .5;
	cursor:pointer;
	z-index: 2;
}

.card_input:has(input.password[type="password"]) .eye {
	background-image: url("/img/svg/eye-show.svg");
}


.card_input:has(input.password[type="text"]) .eye {
	background-image: url("/img/svg/eye-hide.svg");
}



.card_input input:focus {
	outline: none;
	border: none;
}

.card_input span {
    display: none;
    position: absolute;
    bottom: -20px;
    font-size: 12px;
    width: 100%;
    padding: 0 5px;
    color: #dc3545;
}

.card_input:has(input.is-invalid) span {
    display: block!important;
    transition: all .2s!important;
}

.card_input:has(input.is-invalid) {
    border-color: #dc3545!important;
    transition: all .2s!important;
}

.card_input:has(input.is-invalid) label {
    color: #dc3545!important;
    transition: all .2s!important;
}

.card_input .icon {
    min-width: max-content;
}

.card_input .icon img {
    height: 20px;
}



.control_btn {
    display: flex;
    justify-content: center;
    width: 76%;
    padding: 10px 0;
    background: #6c757d;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 1vh 0.1vh rgba(0,0,0,.1);
}


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

.plano_conteiner .left {
	position:absolute;
	width:100px;
	height:100px;
	display:flex;
	justify-content:center;
	align-items:center;
	right:0;
}

.plano_icon {
	display: flex;
    justify-content: center;
	align-items: center;
	width: 50%;
	height: 100px;
}

.plano_icon img {
	width: 100%;
	height: auto;
}

.plano_conteiner .right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    padding-top: 5px;
}

.plano_title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #9d9d9d;
    text-transform: capitalize;
}

.plano_valor_conteiner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content:flex-start;
	align-items: center;
	width: 100%;
	height: auto;
	margin:15px 0;
}

.plano_valor_conteiner#seltop01{
	
}

.plano_valor_conteiner#seltop02{
	display:none;
}

.loading_accont {
	position: absolute;
	display: none;
	bottom:0;
	left:0;
	width: 100%;
	height: 70%;
	background: #ffffff;
	z-index:3;
}


.loading_accont img {
	width: auto;
	height: 65%;
	margin:auto;
}

.plano_valor {
	position:relative;
    width: 100%;
    padding: 10px;
    font-size: 17px;
	display:flex;
	justify-content:center;
	align-items:center;
}

.plano_valor p{
	padding:0;
	margin:0;
	font-size:18px;
	color:#717171;
	margin:0px 5px;
}

.plano_valor span{
	padding:0;
	margin:0;
	font-size:36px;
}

.btn_plano {
	position: relative;
    display: flex;
    justify-content: center;
    margin: 15px auto;
    width: 80%;
    padding: 8px 0;
    box-shadow: 0 0 1vh 0.1vh rgba(0,0,0,.1);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
	cursor:pointer;
	overflow:hidden;
	border:none;
}

.btn_plano_2{
	display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 80%;
    padding: 8px 0;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
	cursor:pointer;
	transition: .3s;
	border:none;
	display:none;
}


.btn_plano_2:hover {
	background: #bbbbbb;
    box-shadow: 0 0 1vh 0.1vh rgba(0,0,0,.1);
	transition: .3s;
}

.control_conteiner {
	display: flex;
	width:100%;
	height:100%;
	flex-shrink:0;
	position:relative;
}

.control_conteiner .loadingpanel
{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	display:flex;
	justify-content:center;
	align-items:center;
	background-color:rgba(255,255,255,0.6);
	display:none;
	z-index: 20;
}

.control_conteiner .loadingpanel .loader {
  border: 5px solid #f3f3f3; /* Cor de fundo */
  border-top: 5px solid #3498db; /* Cor do loading */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.row_progress_stage{
	display:flex;
	width:100%;
	height:auto;
	transition:all .3s;
}


.control_center h3 {
    font-size: 21px;
    font-weight: 700;
}




.line_progress_body {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 100px);
	max-width:800px;
    height: 100px;
    margin-top: 120px;
	margin-bottom:20px;
}



.status_progress {
	position: relative;
	display:flex;
	justify-content: center;
	align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
	box-shadow:0 0 1vh .1vh rgba(0,0,0,.2);
	background: #f4f4f4;
	overflow: hidden;
	z-index:1;
	cursor:pointer;
}

.status_progress span {
	position: absolute;
	display:block;
	width: 0;
	height:100%;
	left:0;
}


.status_progress img {
	width: 50%;
	height:auto;
	z-index: 1;
}


.line_progress {
	position:absolute;
	width: 100%;
	height:10px;
	background: #f4f4f4;
	box-shadow:0 0 1vh .1vh rgba(0,0,0,.2);
}

.line_progress span {
	display:block;
	height:100%;
	width: 0;
	background: #b1b6bb;
	transition:all 0.5s;
}

.select_row_conteiner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	padding: 10px 0;
	margin: 40px 0;
}

.option_conteiner {
	display: flex;
	align-items: center;
	width: 200px;
	height: 40px;
	border: 1px solid #abb0b6;
	border-radius: 10px;
	margin: 0 15px;
	background: transparent;
	cursor: pointer;
}

.option_conteiner .icon {
	width: auto;
	height: auto;
	margin: auto 10px;
	opacity:.4;
}

.option_conteiner .icon img {
	width: 22px;
	height: auto;
}

.option_conteiner .label {
    margin: auto 10px;
    font-size: 16px;
    font-weight: 700;
    color: #999999;
}



.option_conteiner.selected {
    border-color: #0d6efd;
    box-shadow: 0 0 0.5vh 0.1vh #0d6efd57;
}


.option_conteiner.selected .icon {opacity:1;}

.option_conteiner.selected .label {
	color: black;
}
/*
.option_conteiner.selected {
    border-color: black;
    box-shadow: 0 0 0.5vh 0.1vh rgba(0,0,0,.2);
}*/


.planBody footer
{
	margin-top:0;
}










