@charset "windows-1252";
/*@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500&subset=latin,latin-ext&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');

:root {
	--container-width: 1400px;
	--blue: #1e90ff;
	--white: #ffffff;
	--yellow: #ffcb05;
	--font-base-size: 18px; /* Define o tamanho da fonte base, 1rem = 18px */
	--font-base-family: "Poppins","Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
	--font-heading-weight: 600;
	--font-heading-line-height: 1.2;
	--font-primary: 'Poppins', Arial, Helvetica, sans-serif;
	--color-primary: #565656;
	--color-secondary: #707070;
	
	--color-gray: #494949;
	--color-yellow: #ffcb05;
	--color-light-gray: #f1f1f1;
	--color-white: #ffffff;
	
	/* mapa */
	--bg:#ffffff;
	--stroke:#f6f6f6;
	--map:#e7e7e7;
	--map-hover:#6aa9ff;
	/*--map-hover:#6aa9ff;
	--map-active:#2d7dff;*/
	--map-active:#9f9f9f;
	--icon:#f3f3f3;
	--icon-text:#fff;
	--panel-title:#111;
	--panel:#f7f7f9;

}
@font-face {
	font-family: 'Manrope';
	src: url('../bkp/novo2/css2/fonts/Manrope/Manrope-VariableFont_wght.ttf') format('truetype');
	font-weight: 100 900; /* eixo wght de 100 até 900 */
	font-style: normal;
}
.bebas-neue-regular {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-style: normal;
}
/* ------- RESET REDBIT ------- */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border: 0;
}
html, body {
	width: 100%;
	height: 100%;
	/*line-height: 1.6;*		Manrope*/
	font-size: var(--font-base-size);
	scroll-behavior: smooth;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale;
}
body {
	font-family:var(--font-base-family);
	color: #555;
	margin:0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;	
}
header, #sliderbanner, main, #publicacoes, footer {
	width: 100%;
}
.fonte-amarela{
	color:var(--yellow);
}
/* ----------------------------- TIPOGRAFIA (30% MENOR) ----------------------------- */
address, li, td, th {
	margin: 0 20px 1em;
	font-family: var(--font-primary);
	line-height: 1.7;
	font-weight: 400;
	color: var(--color-secondary);
}
/* Links */
a {
	text-decoration: none;
	outline: none;
	font-weight: 500;
	color: #ffffff;
	cursor: pointer;
}
a:hover, a:focus {
	color: #333333;
	text-decoration-color: #333333;
	/*text-decoration: none;*/
}
#main a{
    text-decoration-line: underline !important;
    text-decoration-style: dotted !important;
    text-decoration-color: #ccc !important;
    text-underline-offset: 3px;
    }
#main a:hover, #main a:focus {
	color: #333333;
	text-decoration-color: #333333 !important;
	/*text-decoration: none;*/
}
    
/* Código em linha */
code {
	font-family: 'Courier New', Courier, monospace;
	background-color: #f4f4f4;
	padding: 0.2em 0.4em;
	border-radius: 4px;
	font-size: 0.665em; /* 0.95em -> -30% */
	color: #c7254e;
}
/* Títulos (escala mais contida) */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-primary);
	font-weight: 600;
	line-height: 1.3;
	margin: 20px 20px 0.3em;
}
/* Hierarquia de títulos revisada (equilíbrio visual) */
h1 {
	color: var(--color-primary);
	font-size: 30px;
}
h2 {
	text-align: center;
	margin: 20px;
	color: #5d5d5d;
	font-weight: bold;
	font-size: 24px;
}
h3 {
	color: #565656;
	font-size: clamp(0.88rem, 0.72vw + 0.64rem, 1.05rem);
	font-weight: 600;
}
/* Subtítulos */
h4, h5, h6 {
	color: var(--color-secondary);
	font-weight: 500;
}
h4 { font-size: clamp(0.7rem, 0.56vw + 0.42rem, 0.84rem); } 
h5 { font-size: clamp(0.665rem, 0.42vw + 0.35rem, 0.735rem); }
h6 {
	font-size: clamp(0.63rem, 0.35vw + 0.28rem, 0.7rem);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
mark {
	background-color: #fff59d;
	padding: 0 0.25em;
}
/* Texto corrido (parágrafos, endereços, células) */
p, address, td, th {
	text-align: left;
	font-family: var(--font-primary);
	color: var(--color-primary);
	font-size: clamp(0.83rem, 0.3vw + 0.8rem, 0.92rem);
	line-height: 1.7;
	margin: 0 20px 1em;
}
/* Código / pré-formatado */
pre{
	display: inline-block;
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
	font-size: 0.63rem; /* 0.9rem -> -30% */
	line-height: 1.5;
	color: #212529;
	background-color: #f8f9fa;
	padding: 5px;
	margin: 5px 20px 10px 20px;
	overflow: auto;
	white-space: pre;
	border: 1px solid #e9ecef;
	border-radius: .25rem;
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
	text-wrap: auto;
}
/* ----------------------------- LISTAS ----------------------------- */
/* Margens tradicionais e leve recuo à esquerda */
ol, ul{
	margin: 0 0 1rem 1.5rem;
	padding: 0 20px;
}
/* Padrões */
ul{ list-style: disc; }
/* Itens de lista herdando a redução de tamanho */
li{
	font-family: var(--font-primary);
	color: var(--color-primary);
	font-weight: 400;
	line-height: 1.6;
	font-size: clamp(0.83rem, 0.3vw + 0.8rem, 0.92rem);
	margin-bottom: .4em;
}
li > *:last-child{ margin-bottom: 0; }
li ul, li ol{ margin-top: .5rem; margin-bottom: .5rem; }

/* Evitar resets conflitantes */
ul[role=list], ol[role=list]{ list-style: none; }

/* ---- Suporte a múltiplos formatos via atributo nativo "type" ---- */
/* Decimais */
o
.fonte-amarela{
	color:var(--yellow);
}
/* -------------------- HR Moderno -------------------- */
hr {
	border: none;                /* remove borda padrão */
	height: 1px;                 /* espessura fina e elegante */
	background-color: #cbcbcb;   /* cor solicitada */
	margin: 1em auto;            /* espaçamento vertical equilibrado */
	width: calc(100% - 40px);                  /* largura adaptável */
	border-radius: 2px;          /* bordas suavemente arredondadas */
	opacity: 0.85;               /* leve transparência para suavizar */
}

/* Efeito sutil ao usar temas escuros */
@media (prefers-color-scheme: dark) {
	hr {
		background-color: #666;   /* tom ligeiramente mais claro para contraste */
		opacity: 0.7;
	}
}

/* Variante decorativa opcional (classe auxiliar) */
hr.decorativo {
	height: 2px;
	width: 60%;
	background: linear-gradient(to right, transparent, #494949, transparent);
	opacity: 0.9;
}

/* ----------------------------- VEJA TAMBÉM------------------------------ */
.vejatambem {
	width:410px;
	margin:10px 20px;
	list-style-type:inside;
	list-style-type: decimal !ie; /*IE 7- hack*/
	margin: 0;
	margin-left: 1em;
	padding: 0;
	counter-reset: li-counter;
}
.vejatambem li{
	position: relative;
	margin-bottom: 1.5em;
	padding: 0.5em;
	background-color: #cccdcf;
	padding-left: 58px;
}
.vejatambem a{
	text-decoration:none;
	color:#494949;
	font-size:15px;
	font-family: 'Raleway', sans-serif;
	width: 100%;
	display: inline-block;	
}
.vejatambem li:hover{
	box-shadow:inset -1em 0 #ffcb05;
	-webkit-transition: box-shadow 0.5s; /* For Safari 3.1 to 6.0 */
	transition: box-shadow 0.5s;
}
.vejatambem li:before {
	position: absolute;
	top: -0.1em;
	left: -0.6em;
	width: 1.3em;
	height: 1.2em;
	font-size: 1.5em;
	line-height: 1.2;
	font-weight: bold;
	text-align: center;
	color: white;
	background-color: #ffcb05;
	transform: rotate(-20deg);
	-ms-transform: rotate(-20deg);
	-webkit-transform: rotate(-20deg);
	z-index: 99;
	overflow: hidden;
	content: counter(li-counter);
	counter-increment: li-counter;
}
/* ----------------------------- BOTÕES ------------------------------------ */
button, input, select, textarea {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	outline: none;
}
button {
	cursor: pointer;
}
/* ----------------------------- TABELAS ------------------------------------ */
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 1.5em 0;
}
th, td {
	border: 0px solid #ddd;
	padding: 0.75em;
	text-align: left;
}
th {
	background-color: #f4f4f4;
	font-weight: 600;
}
/* ----------------------------- MIDIAS RESPONSIVAS ------------------------------------ */
img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
	height: auto;
}
/*------- cor--------*/
.texto-branco{
	color:white;
}
/* ----------------------------- ACESSIBILIDADE ------------------------------------ */
:focus-visible {
	outline: 2px solid #004080;
	outline-offset: 2px;
}
/* ----------------------------- CITAÇÕES ------------------------------------ */
blockquote::before, blockquote::after, q::before, q::after {
	content: '"';
}
/* ----------------------------- CAMPOS DESATIVADOS ------------------------------------ */
:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
/* --------------- HEADER -----------------------------------------*/
header {
	display: flex;
	flex-direction: column;
	background-color: var(--white);
	position:absolute;
}
@media (max-width: 900px){
	header {
		position:static;
	}
}
.header-black{
	background-color:#000;
	position:relative !important;
}
.header-line {
	min-height: 30px;
	background-color: #f8f8f8;
	z-index: 3;
	display:flex;
	flex-grow: 1;
}
.header-line .main{
	background-color:gray;
}
#header {
	display: flex;
	flex-direction: column;	
	position: relative;
	z-index: 2;
	min-height: 150px;
	/*box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);*/
}
@media (max-width: 900px){
	#header {
		position:static;
		background-color:black;
	}
}
.header-line-box{
	display: flex;
	justify-content: flex-end;
	gap: 2px;
	align-content: center;
	flex-wrap: wrap;
	flex-grow: 1;
}
@media (max-width: 900px){
	.header-line {
		text-align:center;
	}
	.header-line-box{
		justify-content: center;
	}	
}	
/* --------------- HEADER TELEFONE e REDES SOCIAIS -------*/
#header-telefone{
	margin:4px;
}
#header-telefone a{
	margin:0 5px;
	color: #4c4d4f;
}
#header-telefone a:hover{
	color:#ffcb05;
}
#header-telefone .icon, #header-telefone .fa{
	margin:4px;
	color: #ffcb05;
}
#header-telefone .icon:hover{
	color:#000;
}
#header-redes-sociais{
	margin: 0;
	display: block;
	text-align: right;
	vertical-align: middle;
	padding-right: 10px;	
}
#header-redes-sociais .icon {
	color: #6d6e71;
	font-size: 11pt;
	margin: 9px;
	cursor: pointer;
	display: inline-block;
}
#header-redes-sociais .icon:hover{
	color: #ffcb05;
	-webkit-transform: rotate(360deg);
	-webkit-transition-duration: 0.5s;
}
/* --------------- HEADER BOX -------------------------------*/
.header-box{
	display:flex;
	flex-direction: row;
	align-items: center;;
	justify-content: space-between;
	height:120px;
	padding: 20px !important;
}
@media (max-width:900px){
	.header-box{
		padding: 0px !important;
		flex-direction: column;
		align-items: stretch;
	}
}
.header-box-logo{
	
}
.header-box-sisvip{
	float:right;
	position: absolute;
	right: 20px;
	top: 110px;
	border: 1px solid #e1e1e1;
	padding: 5px 10px;
	border-radius: 10px;
	background-color: #f1f1f1;
	color: #bdbdbd;	
	max-width: 120px;
	text-align: center;
	line-height: 20px;
	box-shadow: 2px 2px 2px #cbcbcb;	
}
@media (max-width: 650px){
	.header-box-logo{
		margin:20px 10px 0;
	}
	.header-box-sisvip{
		text-align:center;
		float:none;
		position:relative;
		top:auto;
		right:auto;
		margin: 20px auto;
	}
	.header-box-sisvip img{ 
		max-width:100px;
	}	
}
.header-box-sisvip:hover{
	background-color:#ffcb05;
	color:#333;
}
.header-box-sisvip a{
	color:#656262;
	font-size:15px;
}
.header-logo-img{
	max-width: 250px;
	margin: 10px auto;	
}
/* --------------------------------- NAV -------------------------------*/
nav{
	
}
#nav{
	min-height:45px;
}
@media (max-width: 900px){
	#nav{
		background-color: #f6f6f6;
		border-bottom: 2px solid #828282;
	}	
}
/* --------------- SLIDER -------------------------------*/
#rbSliderbanner {
	background-color: #dddddd;
}
#publicacoes {
	background-color: #dfdfdf;
}
#publicacoes h2{
	font-size: 25px;
	padding: 20px 10px 5px 0;
	color: #474747;
	margin:0;
}
#publicacoes h3{
	font-size: 19px;
	padding: 0;
	color: #474747;
	margin:0;
}
#publicacoes p{
	font-size: 16px;
	padding: 5px 10px 20px 0;
	color: #474747;
	margin:0;
}
.container-box {
	width: 100%;
	height: auto;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0;
	opacity: 1;
}
/* --------------- BREADCRUMBS -------------------------------*/
#rbBreadcrumb{
	margin:0px;
	background-color:black;
	border-top: 2px solid #ffffff82;
	/*min-height: 150px; #ffcb05 */
	height: auto;	
}
.breadcrumb-box {
    padding: 6px 0px;
}	
.breadcrumb-box span {
    font-size: 16px;
    color: #ffffff;
    font-family: system-ui;
    padding-left:12px;
}
/* --------------- MAIN -------------------------------*/
main {
	flex: 1 0 auto;
}
#main{
	padding:20px 10px;
}
.main-flex{
	display:flex;
}
@media(max-width: 900px){
	.main-flex{
		justify-content: center;
	}
}
.main-box{
	width:100%;		
}
/*@media(max-width: 900px){
	.main-box{
		width:90%;		
	}
}*/
.main-box,h1{
	text-align:center;
}
/*--------- O QUE FAZEMOS -----------*/
#o-que-fazemos{
	display:flex;
	flex-direction:row;
	background-color:black;
}
@media (max-width: 1400px){
	#o-que-fazemos{
		flex-direction:column;
	}
}
.o-que-fazemos-box{
	display: flex;
	justify-content: center;
	align-items: center;
}
.o-que-fazemos-texto{
	display:flex;
	flex-direction:column;
	width:90%;
}
@media (max-width: 900px){
	.o-que-fazemos-texto{
	width:100%;
}
}
h2 .branco{
	color:white;
}
.o-que-fazemos-imagem{
	width: 100%;
}
@media (max-width:1400px){
	.o-que-fazemos-imagem{
		display: flex;
    		justify-content: center;
	}
}
/*--------- Hístorico e Fundação -----------*/
#historico-e-fundacao{
	background-color:black;
	display:flex;
	flex-direction:row;
}
@media (max-width: 1400px){
	#historico-e-fundacao{
		flex-direction: column-reverse;
	}
}
.historico-e-fundacao-box{
	display: flex;
	justify-content: center;
	align-items: center;
}
.historico-e-fundacao-texto{
	display:flex;
	flex-direction:column;
	width:90%;
}
@media (max-width: 900px){
	.historico-e-fundacao-texto{
		width:100%;
	}
}
.historico-e-fundacao-imagem{
	width: 100%;
}
@media (max-width:1400px){
	.historico-e-fundacao-imagem{
		display: flex;
    		justify-content: center;
	}
}	
/*--- Nosso Diferencias ---*/
#nossos-diferenciais{
    display: flex;
    background-color: gray;
    padding: 0px 0px;
    flex-direction: column;
    justify-content: flex-end;
}
.nossos-diferenciais-grupo-img{
	position:relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 20px;
}
@media(max-width:900px){
	.nossos-diferenciais-grupo-img{
    		justify-content: center;
    }
}
.nossos-diferenciais-espacamento{
    width: 47%;
}
@media (max-width:900px){
	.nossos-diferenciais-espacamento{
   		display:none;
	}
}
.nossos-diferenciais-fundo{
	right: 0px;
	position: absolute;
	height:auto;

}
@media(max-width: 900px){
	.nossos-diferenciais-box {
  	  width: 100%;
}
}
/*----- Nossos Serviços-----*/
#nossos-servicos{
	background-color:black;
	padding: 40px 0px;
}
@media (max-width: 900px){
	.nossos-servicos-box {
    		width: 100%;
	}
}
h3.branco {
	font-weight: bold;
	text-align:center;
}
p.branco {
	 text-align: left;
}
/*----- Assessoria Técnica | Canal Digital -----*/
#assessoria-tecnica{
	background-color:#F0F0F0;
}
.assessoria-tecnica-box{
	display:flex;
	flex-direction: column;
	padding: 40px 0px;
}
@media (max-width:900px){
	.assessoria-tecnica-box{
		width: 90%;
	}
}
.fluxograma-grupo{
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
}
@media (max-width:900px){
	.fluxograma-grupo{
		flex-direction: column;
	}
}
.fluxograma-box-1{
	gap: 20px;
	padding: 10px;
	display: flex;
	width: 50%;
	height: auto;
	flex-direction: column;
}
@media( max-width:900px){
	.fluxograma-box-1{
		width: 100%;
	}
}
.fluxograma-box-2{
	padding: 10px;
	display: flex;
	width: 50%;
	height: auto;
}
@media( max-width:900px){
	.fluxograma-box-2{
		width: 100%;
	}
}
.fluxograma-box-3{
	padding: 10px;
	display: flex;
	width: 100%;
	height: auto;
}
.fluxograma-card-1{
	border: 2px solid #5d5d5d;
	border-radius: 20px;
	width: 100%;
	height: auto;
	background-color: #ffffff;
}
.fluxograma-card-2{
	border: 2px solid #5d5d5d;
	border-radius: 20px;
	width: 100%;
	height: auto;
	background-color: #ffffff;
}
@media(max-width: 900px){
	.fluxograma-card-2{
	display:none;
	}
}
.fluxograma-card-2-mobile{
	display:none;
}
@media(max-width: 900px){
	.fluxograma-card-2-mobile{
		display:flex;
		flex-direction: column;
		border: 2px solid #5d5d5d;
		border-radius: 20px;
		width: 100%;
		height: auto;
		background-color: #ffffff;
	}	
}
.fluxograma-card-3{
	display:flex;
	flex-direction: column;
	border: 2px solid #5d5d5d;
	border-radius: 20px;
	width: 100%;
	height: auto;
	background-color: #ffffff;
}
@media(max-width: 900px){
	.fluxograma-card-3{
	display:none;
	}
}
.fluxograma-card-3-mobile{
	display:none;
}
@media(max-width: 900px){
	.fluxograma-card-3-mobile{
		display:flex;
		flex-direction: column;
		border: 2px solid #5d5d5d;
		border-radius: 20px;
		width: 100%;
		height: auto;
		background-color: #ffffff;
	}	
}
.fluxograma-card-4{
	display: flex;
	flex-direction: row;
   	align-items: center;
	border: 2px solid #5d5d5d;
	border-radius: 20px;
	width: 100%;
	height: auto;
	background-color: #ffffff;
}
@media(max-width: 900px){
	.fluxograma-card-4{
		flex-direction: column;
		height: auto;
	}
}
.fluxograma-card-4-a{
	width:50%;
}
.fluxograma-card-4-b{
	width:50%;
}
@media(max-width: 900px){
	.fluxograma-card-4-a{
		width:100%;
	}
	.fluxograma-card-4-b{
		width:100%;
	}
}
/*------ Parcerias B2B ------*/
#parceria-b2b{
	background-color:#E4E4E4;
	padding:40px 20px;
}
.parceria-b2b-box{
	
}
.parceria-b2b-grupo {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.parceria-b2b-card {

    display: flex;
    border-radius: 20px;
    background-color: #ffffff;
    margin: 0;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.b2b-card{
	border: 2px solid #808080;
	border-radius:20px;
}
.swiper-box-card {
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.5s ease;
    justify-content: space-evenly;
}
.card-container{
	position: relative;
	width: 320px;
	height: 320px;
	font-family: sans-serif;
	perspective: 1000px;
	cursor: pointer;
	overflow: hidden;
}
.card-frente{
	z-index: 2;
}
.card-hover {
	z-index: 1;
    display: flex;
    flex-direction: column;
    max-width: 320px;
    min-height: 220px;
    background-color: white;
    border: 2px solid #808080;
    border-radius: 20px;
    align-items: center;
}
.card-texto{
	text-align:center;
}
.btn-saiba-mais{
	padding: 6px 8px;
	width: 40%;
	background-color:black;
	border-radius:30px;
}
.btn-saiba-mais:hover{
	background-color:#E4E4E4;
}
span.fa.fa-caret-right {
    color: white;
}
.btn-saiba-mais:hover span.fa.fa-caret-right{
	  color: black;
}
.span.solicitar{
	color:white;
}
.btn-saiba-mais:hover span.solicitar{
	  color: black;
}
.card-container:hover .card-frente{
	transform: translateY(-120%);
}
/* ------- Publicações  ------- */
#Publicacoes{
	height: auto;
	display: flex;
	flex-direction: column;
	max-width: 90%;
	margin: 10px auto;
	justify-content: center;
}
#Publicacoes ul{
	display:block;
	margin:0 auto;
	display: flex;
	justify-content: space-around;
	max-width: 1200px;
	flex-wrap: wrap;
	gap: 5px;
}
#Publicacoes li{
	display: flex;
	position:relative;
	min-height: 322px;
	flex-direction: column;
	margin: 10px auto;
	overflow: hidden;
	width: 280px;
	align-content: center;
	flex-wrap: wrap;
	justify-content: space-around;
	max-width: 1200px;
	background: #f5f5f5;
	color: #5d5d5d;
	padding: 5px;
	border-radius: 10px;
	border: 1px solid #dddddd;	
}
#Publicacoes p{
	margin: 10px 10px;
	color: #5d5d5d;
	font-size: 14px;
	font-weight: 400;
	}
@media (max-width:900px){
	#Publicacoes p{
		text-align:center;
	}	
}

#Publicacoes h3{
	color: #5d5d5d;
	margin: 10px 10px 10px 10px;
	font-size: 15px;
	font-weight: 500;
	font-family:var(--font-base-family);
}
@media (max-width:900px){
	#Publicacoes h3{
		text-align:center;
	}	
}
#Publicacoes .pub_textos {
	min-height: 150px;
	min-width: auto;
}
#Publicacoes .pub_textos a {
	color:#D71E26;
}
#Publicacoes .pub_textos a:hover, #Publicacoes .pub_textos h3:hover, #Publicacoes .pub_textos p:hover  {
	color:#333333;
}
#Publicacoes .info{
	font-size: 12px;
	display: flex;
	margin: 0;
	justify-content: center;
}
#Publicacoes .info2{
	font-family: verdana !important;
	font-size: 10.5px;
	padding: 2px 5px 2px 2px;
	border-radius: 3px;
	background-color: #888888;
	border: solid 1px #F1F1F1;
	cursor: help;
	height: 25px;
	display: inline-block;
	margin:10px 2px 2px;
	color: #ffffff;
}
#Publicacoes .info2 .icon{
	margin:0 5px 0 3px;
	font-size: 10px;
}
#Publicacoes .info2:hover .icon, #Publicacoes .info2:hover{
	color: #fff !important;
	background-color: #5d5d5d !important;
	border: 1px solid rgba(255, 255, 255, 0) !important;
}
#Publicacoes .pic {
	width: 100%;
	height:auto;
	max-height: 300px;
	overflow: hidden;
	float:left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.42);
	border-radius: 5px;
}  

@media (max-width: 620px){
	#Publicacoes .pic {
		max-width: 100%;
		max-height: 100%;
	}
}
/* ---- STT Consult ----*/
#stt-consult{	
	background-image:url('../imagens/fundos/fundo-02.webp');
	background-size: cover;      
	background-position: center; 
	background-repeat: no-repeat; 
	min-height: 500px;
}		
.stt-consult-box{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 500px;
	padding: 20px;
}
.stt-consult-card{
	padding: 10px;
	background-color:white;
	border-radius:8px;
	text-align: center;
	background-color: #ffffff78;	
}
.stt-consult-card h2{
	color:black;
}
.stt-consult-card p{
	color:black;
}

/*---- GROW ----*/
.grow img {
	width: 100%;
	height: auto;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}
.grow img:hover {
	width: 100%;
	height:auto;
	margin: 0;
	scale: 1.2;
}
#Publicacoes img{
	/*width:200px; grow*/
	min-height: auto;
}
#Publicacoes hr{
	margin:5px 0 15px 0;
}
#Publicacoes .icon-zoom-in:hover{
	color: #AF2027;
	text-decoration: none;
	font-size: 15px;
}
#PublicacoesNav{
	display: table;
	margin: 0 auto;
}
#PublicacoesNav a{
	display: inline-block;
	height: auto;
	padding: 2px 2px 0px 7px;
	border: 1px solid #ccc;
	margin: 3px;
	background-color:#f5f5f5;
	
}
#PublicacoesNav a:hover{
	text-decoration:none;
	background-color:#e2e2e2;
}
#PublicacoesNav .icon{
	color:#102750
}
#PublicacoesNav .icon:hover{
	color:#d71e26;
}
#PublicacoesNav .pagina-x-de-x{
	display: inline-block;
	height: auto;
	padding: 2px 2px 0px 7px;
	border: 0px solid #ccc;
	margin: 3px;
	font-size: 12px;
}
#PublicacoesNav .totalpublicacoes{
	display: inline-block;
	height: auto;
	padding: 2px 2px 0px 7px;
	border: 1px solid #EFEFEF;
	margin: 3px;
	font-size: 12px;
}
/* -------------------- FOOTER -------------------------------*/
#footer {
	background-image: url("../imagens/fundos/footer-fundo.webp");
    	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color:#000000;
}
.footer {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.footer .icon{
	color:var(--yellow);
	margin:5px 10px 5px 5px;
}
.footer p{
	color:#fff;
}
.footer_col1, .footer_col2, .footer_col3{
	gap: 10px;
	display: flex;
	padding: 20px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.footer .titulo{
	color:#ffcb05;
	margin:5px 20px;
}
.footer_col2{
	text-align:center;
}
.footer hr{
	border:2px solid #ffffff;
	margin: 0 20px;
}
.footer-line {
	min-height: 25px;
	background-color: #000000;
	border-top: 1px solid rgb(255 255 255);
	margin:0;
}
.footer-line-box{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media(max-width:860px){
	.footer-line-box{
		flex-direction: column;
	}	
}
.footer-line-box p{
	font-size:13px;
	color:#ffffff;
	margin: 3px 10px 2px;
}
.footer-redes-sociais{
	text-align:center;
	margin: 20px;
}
.footer-redes-sociais a{
	font-size:23px;
}
.footer-selos{
	text-align: center;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	margin: 40px 0;
	flex-wrap: wrap;
	gap: 20px;	
}
.footer-selos a{
	color: #fff;
	font-size: 12px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 10px;
}
@media (max-width: 900px){
	.footer {
		flex-direction: column;
	}
}
/* ------------------- ADDRESS -------------------------------*/
address{
	margin:0;
}
.address{
	margin:20px 0;
	list-style:none;
}
.address li{
	margin:10px 0;
}
address a{
	color:#fff;
	font-size: 15px;
	font-style: normal;	
}
address a:hover{
	color: #ffcb05;
}
/* ------------------ FORM BUSCA -------------------------------*/
.header-busca{
	display:inline-block;
	margin:4px 0 0;
	position:relative;
	/*width:100%;*/
	height: 30px;
}
.header-busca-menu{
	display:none;
	margin:3px auto;
	position:relative;
	width:300px;
	height: 32px;
}
@media (max-width: 900px){
	.header-busca{
		display:none;
	}
	.header-busca-menu{
		display:block;
	}	
}
#busca_form_mini{
	display:flex;
	align-items: center;
	float: right;
	vertical-align: middle;
	width: 300px;
	height: auto;
	margin:0px 16px;
}
@media (max-width: 900px){
	#busca_form_mini{
		float:none;
		margin:8px auto;
	}	
}
#busca_form_mini input[type=text]{
	border-radius: 5px 0 0 5px;
	border: 1px solid #C0C0C0;
	background: #F4F4F4;
	height: 25px;
	margin: 0 0 0 2px;
	color: #000 !important;
	padding: 5px;
}
#busca_form_mini input[placeholder]{
	color: #000000;
	font-style: normal;
	font-size:12px;
	width: 230px;
	background-color: #fff;
}
#busca_form_mini input:focus{
    outline: none !important;
    box-shadow: none !important;
}    
#busca_form_mini input[type=submit]{
	border-style: none;
	border-color: inherit;
	border-width: 0;
	background-color: #6d6e71;
	cursor: pointer;
	height: 25px;
	width: 45px;
	margin: 0;
	font-family: var(--font-base-family);
	font-size: 10px;
	color: #dfdfdf;
	border-radius: 2px;
	/*background-image: url('lupa-busca.png');
	background-repeat: no-repeat;
	background-position: center center;*/
}
#busca_form_mini input[type=submit]:hover{
	color: #333;
	background-color: #666;
}
#busca_form_mini select{
	border: 0 !important;
	color: #fff;
	height: 24px;
	min-width: 180px;
	border-radius: 3px;
	text-transform: uppercase;
	font-family: var(--font-base-family);
	margin: 2px;
	padding: 0px 5px 0 10px;
	-webkit-appearance: none; 
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	/*background: url('../imagens/icones/seta-select.png') no-repeat 163px center #124284;*/
	cursor: pointer;
}
#busca_form_mini select option{
	cursor: pointer;
}
#busca_form_mini select > a:after{
	border-color: #FF0000 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}


.busca_titulo{
	color:#ffcb05;
	font-weight:bold;
	margin: 0px !important;
}
.busca_informacao{
	font-size:12px;
}
/* ------- FORMULÁRIOS DE CONTATO ------- */
.form_div{
	/*páginas de confirmação*/
	text-align: center;
}
#form-div{
	max-width: 500px;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 5px;
	/*background:url('../imagens/webparts/forms/fundo_topo.gif') repeat-x center top;*/
	/*border-radius:4px;
	border: 1px solid #F7C1C7;
	background-color: rgb(254, 255, 230);
	background: linear-gradient(0deg, white 91%, rgb(250, 241, 220) 90%);*/
}
@media (max-width: 500px){
	#form-div{
		max-width: 100%;
	}
}
#form, #conversion-form{
	font-family: 'Poppins', 'Open Sans', sans-serif;
	font-size: 10pt;
	color: #333;
	text-align: left;
	display: table;
}
#form hr, #conversion-form hr{
	width: 100%;
	margin: 0px;
	border-top: 1px solid #F7C1C7;
	border-bottom: 1px solid #fff;
}
#form .titulo, #conversion-form .titulo{
	font-weight: bold;
	color: #b64550;
	margin: 10px 20px;
	font-size: 16px;
}
#form .subtitulo, #conversion-form .subtitulo{
	color: #666;
	margin: 5px 10px;
	font-size: 1em;
	text-align: center;
	font-size: 12px;
}
#form .resumo, #conversion-form .resumo{
	color: #000;
}
#form label, #conversion-form label{
	font-weight: normal;
	margin: 5px 0px 5px 5px;
	display: inline-flex;
	height: 35px;
	flex-direction: row;
	align-content: stretch;
	align-items: center;
	width: auto;
	cursor: pointer;	
}
#form input, #conversion-form input{
	width: 95%;
	margin: 5px;
	border-radius: 3px;
	background-color: #FFFFFF;
	border-right: #ccc 1px solid;
	border-bottom: #ccc 1px solid;
	border: 1px solid #ccc;
	height: 35px;
	padding: 8px 8px 8px 40px;
}
#conversion-form input[type=radio]{
	width: auto;
	margin: 5px;
	border-radius: 3px;
	background-color: #FFFFFF;
	border-right: #ccc 1px solid;
	border-bottom: #ccc 1px solid;
	border: 1px solid #ccc;
	height: 17px;
	padding: 8px 8px 8px 40px;
}
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 30px white inset !important;
}
#FormServicos{
	display: table;
	float: left;
	margin: 0 0 0 15px;
}
#FormServicos p{
	margin: 5px;
}
@media (max-width: 400px){
	#form input, #conversion-form input{
		max-width: 95%;
	}
}
#form input[type=text]{
}
#form input[type=submit], #conversion-form input[type=submit]{
	font: 18px/35px 'Questrial', sans-serif;
	color: #333;
	background-color: #ededed;
	width: auto;
	height: auto;
	border: 1px #b9b9b9 solid;
	padding: 0px 20px 0px 20px;
	cursor: pointer;
	border-radius: 3px;
	box-shadow: inset 0px 1px 0px 0px #ffffff;
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
	text-shadow: 1px 1px 0px #ffffff;
	float: right;
	margin: 5px 20px 5px 15px;
}
#form input[type=submit]:hover, #conversion-form input[type=submit]:hover{
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
	background: -moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');
	background-color: #dfdfdf;
}
#form input[type=submit]:active, #conversion-form input[type=submit]:active{
	position: relative;
	top: 1px;
}
#form input[type=checkbox], #conversion-form input[type=checkbox]{
	background-color: #f0f0f0;
	width: auto;
	float: left;
	margin: 0px 10px 5px 20px;
}
#form #nome, #form #username, #conversion-form #nome, #conversion-form #username{
	background-image: url('../imagens/webparts/forms/nome.png'), url('../imagens/webparts/forms/fundo_input.gif');
	background-size: 15px 15px, 35px 50px;
	background-position: 10px 10px, 0 0;
	background-repeat: no-repeat, no-repeat;
}
#form #email, #conversion-form #email{
	background-image: url('../imagens/webparts/forms/email.png'), url('../imagens/webparts/forms/fundo_input.gif');
	background-size: 15px 15px, 35px 50px;
	background-position: 10px 10px, 0 0;
	background-repeat: no-repeat, no-repeat;
}
#form #password, #conversion-form #password{
	background-image: url('../imagens/webparts/forms/senha.png'), url('../imagens/webparts/forms/fundo_input.gif');
	background-size: 15px 15px, 35px 50px;
	background-position: 10px 10px, 0 0;
	background-repeat: no-repeat, no-repeat;
}
#form #cidade, #conversion-form #cidade{
	background-image: url('../imagens/webparts/forms/cidade.png'), url('../imagens/webparts/forms/fundo_input.gif');
	background-size: 15px 15px, 35px 50px;
	background-position: 10px 10px, 0 0;
	background-repeat: no-repeat, no-repeat;
	max-width: 95%;
}
@media (max-width: 400px){
	#form #cidade, #form textarea, #conversion-form #cidade, #conversion-form textarea{
		max-width: 95%;
	}
}
#form #mensagem, #conversion-form #mensagem{
	background-image: url('../imagens/webparts/forms/mensagem.png'), url('../imagens/webparts/forms/fundo_input.gif');
	background-size: 15px 15px, 35px 200px;
	background-position: 10px 10px, 0 0;
	background-repeat: no-repeat, no-repeat;
}
#form #telefone, #conversion-form #telefone{
	background-image: url('../imagens/webparts/forms/telefone.png'), url('../imagens/webparts/forms/fundo_input.gif');
	background-size: 15px 15px, 35px 50px;
	background-position: 10px 10px, 0 0;
	background-repeat: no-repeat, no-repeat;
}
#form #empresa, #form #razao_social, #form #nome_fantasia, #conversion-form #empresa{
	background-image: url('../imagens/webparts/forms/empresa.png'), url('../imagens/webparts/forms/fundo_input.gif');
	background-size: 15px 15px, 35px 50px;
	background-position: 10px 10px, 0 0;
	background-repeat: no-repeat, no-repeat;
}
#form #cnpj, #conversion-form #cnpj{
	background-image: url('../imagens/webparts/forms/cnpj.png'), url('../imagens/webparts/forms/fundo_input.gif');
	background-size: 15px 15px, 35px 50px;
	background-position: 10px 10px, 0 0;
	background-repeat: no-repeat, no-repeat;
}
#form #arquivo, #conversion-form #arquivo{
	background-image: url('../imagens/webparts/forms/arquivo.png'), url('../imagens/webparts/forms/fundo_input.gif');
	background-size: 15px 15px, 35px 50px;
	background-position: 10px 10px, 0 0;
	background-repeat: no-repeat, no-repeat;
}
#form .desativado, #conversion-form .desativado{
	border-radius: 4px;
	border-right: #E5E5E5 1px solid;
	border-bottom: #E5E5E5 1px solid;
	border: 1px solid #E5E5E5;
	color: #808080;
	height: 25px;
}
#form textarea, #conversion-form textarea{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	border-radius: 4px;
	border: 1px solid #ccc;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	width: 95%;
	height: 115px;
	padding: 8px 8px 8px 40px;
	margin: 5px;
}
#form select, #conversion-form select{
	border-radius: 5px;
	border-right: #ccc 0px solid;
	border-bottom: #ccc 0px solid;
	border: 1px solid #ccc;
	height: 30px;
	padding: 5px 8px;
	margin: 5px;
	color: #7d7d7d;
}
#area_atuacao {	
	background-image: url('../imagens/webparts/forms/mensagem2.png'), url('../imagens/webparts/forms/fundo_input.gif');
	background-size: 15px 15px, 35px 50px;
	background-position: 10px 7px, 0 0;
	background-repeat: no-repeat, no-repeat;
	padding: 5px 8px 5px 40px !important;
	cursor:pointer;
	color: #333;
	width: 95%;
}
#form select option:disabled, #conversion-form select option:disabled{
	color: #666;
}
#contador-textarea{
	color: #cc0000;
	font-size: 9px;
	margin: 10px 30px;
}
#contador-textarea::before{
	content: "(";
}
#contador-textarea::after{
	content: ")";
}
#form input:disabled {
	color: #ababab !important;
	cursor: no-drop !important;
}
#progressBar {	
	width: 90%;
	background-color: #f3f3f3;
	border: 1px solid #ccc;
	margin: 5px 10px 5px 15px;
	padding: 1px;
	border-radius: 20px;
}
#progressBar div {
	width: 0;
	height: 15px;
	background-color: #9ae097;
	text-align: center;
	line-height: 16px;
	color: white;
	border-radius: 20px;
}
#fileInput{
	display: flex;
	align-items: center;
	text-align: center;
	width: 93%;
}
#fileInput input{
	padding: 10px;
}
.cadastrar-form {
	width: 100%;
	align-content: space-around;
}
#politica {
	margin: 2px 10px 5px 20px !important;
}
.labelPolitica{
	cursor:pointer;
}
.labelEnviar{
	display:flex !important;
	width: 100% !important;
	justify-content: center !important;
}	
#enviarStatus{
	display:none;
	font-size: 25px;
}
.linkPolitica{
	color:#1140ab;
	font-weight:bold;
	font-size: 14px;
	margin: 5px;	
}
/* ------- FORMULÁRIO MINI ------- */
#form_mini{
	width: 95%;
	font-family: 'Open Sans';
	color: #fff;
	font-weight: bold;
	margin: 10px 0;
	display: table;
	text-align: left;
	box-sizing: border-box;
	text-align:center;
}
.form_mini_input, .form_mini_textarea{
	/*width:100%;*/
	min-width: 200px;
	background-color: #3f3f3f;
	border: 1px #656565 solid;
	border-radius: 3px;
	height: 28px;
	margin: 3px 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	color: #ffffff;
	padding-left: 10px;
	font-weight: normal;
	margin-left: 8px;
	width: 95%;

}
.form_mini_textarea{
	height:60px;
}
.form_mini_submit{
	font: 16px/23px 'Questrial', sans-serif;
	width: 95px;
	float: right;
	margin: 7px 20px 0 5px;
	display: inline-block;
	padding: 0px 10px;
	cursor: pointer;
	border-radius: 25px;
	padding: 4px 20px;
	color: #fff;
	background-color: #333333;
	text-decoration: none;
	transition: background-color 1.5s ease;
}
.form_mini_submit:hover{
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dddddd), color-stop(1, #f6f6f6));
	color: #305729;
	transition: background-color 1.5s ease;
}
.form_mini_submit:active, .form_mini_submit:focus{
	border: 0;
}
.form_mini_input::-webkit-input-placeholder,.form_mini_textarea::-webkit-textarea-placeholder{
	color: #999;
	font: 12px 'Open Sans', sans-serif;
	font-weight: normal;
}
.form_mini_input:-moz-placeholder, .form_mini_textarea:-moz-placeholder{
	color: #c0c0c0;
	font: 14px 'Open Sans', sans-serif;
	font-weight: bold;
}
.form_mini_input::-moz-placeholder, .form_mini_textarea:-moz-placeholder{
	color: #c0c0c0;
	font: 14px 'Open Sans', sans-serif;
	font-weight: bold;
}
.form_mini_input:-ms-input-placeholder, .form_mini_textarea:-ms-input-placeholder{
	color: #c0c0c0;
	font: 14px 'Open Sans', sans-serif;
	font-weight: bold;
}
.form_mini_erro{
	color: red;
	font-size: 16pt;
}
.form_mini_ok{
	font-size: 10pt;
	margin: 0 0 0 30px;
}
#form_mini p{
	font-size: 15px;
	color: #fff;
	font-weight: normal;
}
#form_mini hr{
	margin: 0;
	width: 100%;
}
/* ------- toTop ------- */
#toTop{
	border-style: none;
	border-color: inherit;
	border-width: medium;
	display: none;
	text-decoration: none;
	position: fixed;
	bottom: 10px;
	right: 20px;
	overflow: hidden;
	width: 42px;
	height: 42px;
	text-indent: 100%;
	background: url('https://www.redbit.com.br/imagens/webparts/totop/totop.png') no-repeat left top;
}
#toTopHover{
	background: url('https://www.redbit.com.br/imagens/webparts/totop/toTop.png') no-repeat left -42px;
	width: 42px;
	height: 42px;
	display: block;
	overflow: hidden;
	float: left;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
}
#toTop:active, #toTop:focus{
	outline: none;
}

