@charset "windows-1252";
/*@import url('https://www.redbit.com.br/css/estilos_global.css');*/
:root {
	--container-width: 1200px;
	--blue: #1e90ff;
	--white: #ffffff;
	--yellow: #d4aa00; 
	--font-base-size: 18px; /* Define o tamanho da fonte base, 1rem = 18px */
	--font-family-default: "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-face {
	font-family: 'Poppins';
	src: url('/css/fonts/Poppins-Regular.ttf') format('truetype');
	font-weight:normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Poppins';
	src: url('/css/fonts/Poppins-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Poppins';
	src: url('/css/fonts/Poppins-Italic.ttf') format('truetype');
	font-weight:normal ;
	font-style: italic;
	font-display: swap;
}

/* ------- RESET REDBIT ------- */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border: 0;
}
html, body {
	width: 100%;
	height: 100%;
	margin:0;
	padding:0;
	/*line-height: 1.6;*/
	font-size: var(--font-base-size);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
	text-rendering: optimizeLegibility;
	display:block;
}
body {
	/*min-height: 100vh;*/
	font-family:var(--font-family-default);
	color: #1e1e1e;
}
#body{
	display: flex;
	flex-direction: column;
	height:100%;
	/*justify-content: space-between;*/
}
header, #rbSliderbanner, main, #publicacoes, footer {
	width: 100%;
}
header, main, #rbSliderbanner, #rbBreadcrumb, #adamo-roberto, #tratamento-psicanalitico, #interacao, #footer{
	flex:0;
}
/* ----------------------------- FONTES ------------------------------------ */
address, h1, h2, h3, h4, h5, h6, p, li, td, th {
	margin: 5px 20px 10px 20px;
	font-family: var(--font-family-default);
	line-height: var(--font-heading-line-height);
	font-weight: var(--font-heading-weight);
	color: #111;
}
a {
	text-decoration: none;
	color: inherit;
	outline: none;
}
a:hover, a:focus {
	color: #003d80;
	text-decoration: none;
}
/* CÓDIGOS EM LINHA */
code {
	font-family: 'Courier New', Courier, monospace;
	background-color: #f4f4f4;
	padding: 0.2em 0.4em;
	border-radius: 4px;
	font-size: 0.95em;
	color: #c7254e;
}
h1 {
	font-size:1.3rem;
	color:#1757A1;
	margin:20px;

  /* font-size: clamp(min, preferred, max) */
  /* Com base em 1rem = 18px: min 36px, pref 5vw, max 45px */
  /*	font-size: clamp(2rem, 5vw, 2.5rem);*/
   /*margin-top: 1.2rem;    /* Aproximadamente 21.6px */
   /*margin-bottom: 0.6rem; /* Aproximadamente 10.8px */
}
h2 {
  /* Com base em 1rem = 18px: min 31.5px, pref 4vw, max 38.7px */
	font-size: clamp(1.1rem, 4vw, 1.0rem);
   /*margin-top: 1.1rem;    /* Aproximadamente 19.8px */
   /*margin-bottom: 0.55rem;/* Aproximadamente 9.9px */
}

h3 {
  /* Com base em 1rem = 18px: min 27px, pref 3.5vw, max 33.3px */
	font-size: clamp(1.0rem, 2.5vw, 1.2rem);
	color:#1757A1;
   /*margin-top: 1.0rem;    /* 18px */
   /*margin-bottom: 0.5rem; /* 9px */
}

h4 {
  /* Com base em 1rem = 18px: min 22.5px, pref 3vw, max 27.9px */
	font-size: clamp(1.25rem, 3vw, 1.55rem);
   /*margin-top: 0.9rem;    /* Aproximadamente 16.2px */
   /*margin-bottom: 0.45rem;/* Aproximadamente 8.1px */
}

h5 {
  /* Com base em 1rem = 18px: min 19.8px, pref 2.5vw, max 24.3px */
	font-size: clamp(1.1rem, 2.5vw, 1.35rem);
   /*margin-top: 0.8rem;    /* Aproximadamente 14.4px */
   /*margin-bottom: 0.4rem; /* Aproximadamente 7.2px */
}

h6 {
  /* Com base em 1rem = 18px: min 18px, pref 2vw, max 21.6px */
	font-size: clamp(1rem, 2vw, 1.2rem);
   /*margin-top: 0.7rem;    /* Aproximadamente 12.6px */
   /*margin-bottom: 0.35rem;/* Aproximadamente 6.3px */
}
/* MARCAÇÃO DE TEXTO */
mark {
	background-color: #fff59d;
	padding: 0 0.25em;
}
/* Estilos para parágrafos */
p {
	font-size: 1rem; /* 18px, conforme definido no body */
	color: #555;    /* Cor ligeiramente mais clara para o corpo do texto, para contraste */
	line-height: inherit; /* Herda 1.6 do body */
	font-weight: normal;
  /* margin-top: 0; /* Remove a margem superior padrão do parágrafo */
 /* margin-bottom: 1rem; /* Espaço após os parágrafos, 18px */
}
/* Estilos para texto pré-formatado (geralmente blocos de código) */
pre {
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace; /* Pilha de fontes monoespaçadas */
	font-size: 0.9rem; /* Ligeiramente menor, aprox 16.2px */
	line-height: 1.5;  /* Altura de linha adequada para código */
	color: #212529;    /* Cor de texto escura para boa legibilidade do código */
	background-color: #f8f9fa; /* Fundo claro para destacar o bloco de código */
	padding: 1rem;     /* Espaçamento interno (18px) */
	margin-top: 0;
	margin-bottom: 1rem; /* Espaçamento após o bloco (18px) */
	overflow-x: auto;  /* Adiciona scroll horizontal se o conteúdo for muito largo */
	white-space: pre;  /* Mantém espaços em branco e quebras de linha como no código fonte */
	border: 1px solid #e9ecef; /* Borda sutil */
	border-radius: 0.25rem;    /* Cantos levemente arredondados (aprox 4.5px) */
	-webkit-font-smoothing: auto; /* Otimização de suavização de fonte para monoespaçadas */
	-moz-osx-font-smoothing: auto;
	text-wrap: auto;
	margin: 5px 20px 10px 20px;
}
/* Estilos para listas ordenadas (ol) e não ordenadas (ul) */
ol, ul {
	margin-top: 0; /* Remove margem superior padrão */
	margin-bottom: 1rem; /* Espaçamento após o bloco da lista (18px) */
	padding-left: 1.8rem; /* Recuo para os marcadores/números (aprox 32.4px) */
                        /* Ajuste este valor conforme necessário para o seu design */
}
/* Estilos para itens de lista (li) */
li {	
	line-height: inherit; /* Herda 1.6 do body, bom para legibilidade */
	color: #555;          /* Mesma cor dos parágrafos, assumindo conteúdo textual */
	font-weight: 400;
}

/* Estilos para garantir que o último item de uma lista não adicione margem extra se a lista já tiver */
/* E para tratar margens de parágrafos dentro de itens de lista */
li > *:last-child {
	margin-bottom: 0;
}

/* Estilos para listas aninhadas (opcional, para refinar espaçamento se necessário) */
/* O padding-left padrão em 'ol, ul' já cuida da indentação de listas aninhadas */
/* Mas você pode querer ajustar margens verticais para listas aninhadas: */
li ul,
li ol {
	margin-top: 0.5rem;    /* Espaço antes de uma lista aninhada começar */
	margin-bottom: 0.5rem; /* Espaço após uma lista aninhada, se não for o último elemento no <li> pai */
}
@media (max-width: 900px){
	h1 {
		/*font-size: 28px;*/
	}
}
ul[role=list], ol[role=list], ul, ol {
	margin: 0;
}
/* ----------------------------- LINHAS ------------------------------------ */
hr, .hr_dupla, .hr_tracejada {
	height: 0;
	border: 0;
	margin: 0 auto;
	margin: 10px 20px;
	/* width: 95%; */
}
hr {
	border-top: 1px solid #e6e6e6;
	border-bottom: 1px solid #fff;
}
/* ----------------------------- BOTÕES ------------------------------------ */
button, input, select, textarea{
	font: inherit;
	color: #1757a1;
	background: none;
	border: none;
	outline: none;
}
button{
	cursor: pointer;
}
/* ----------------------------- TABELAS ------------------------------------ */
table{
	border-collapse: collapse;
	border-spacing: 0;
	margin: 10px;
}
.tabela-imagens img{
	width: 100%;
	max-width: 340px;
	height: auto;
}
th,
td {
	padding: 0.75em;
	text-align: left;
}

th {
	background-color: #f4f4f4;
	font-weight: 600;
}
/* ----------------------------- MIDIAS RESPONSIVAS ------------------------------------ */
picture, video, canvas, svg{
	display: block;
	max-width: 100%;
	height: auto;
	/*margin: 1em 0;*/
}
/* ----------------------------- 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;
}
/* ----------------------------- CONTAINER ------------------------------------ */
.container-box {
	width: 100%;
	height: auto;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0;
	opacity: 1;
}
/* --------------- HEADER -----------------------------------------*/
header {
	display: flex;
	flex-direction: column;
	background-color: var(--white);
}
.header-line {
	height: 30px;
	background-color: #d4aa00;
	z-index: 3;
}
.header-line .main{
	background-color:gray;
}
#header {
	 /*box-shadow: inset 0px -3px 4px 1px #0000002e;*/	
	/*border-bottom: solid 3px #4c4d4f;*/
	position: relative;
	z-index: 2;
	min-height: 130px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
	min-height: 138px;
}
/* --------------- HEADER LINE -------------------------------*/
.header-line-box{
	display:flex;
	justify-content: flex-end;
	gap: 2px;	
}
/* --------------- HEADER TELEFONE e REDES SOCIAIS  -------*/
#header-telefone{
	margin:3px;
	color: #ffffff;
}
#header-telefone .icon{
	margin:auto 10px;
}
#header-telefone a{
	margin:0 5px;
	text-shadow: 1px 1px 2px #000000;
}
#header-telefone a:hover{
	color:#1757a1;
	text-shadow:none
}
#header-redes-sociais{
	margin: 0;
	display: block;
	text-align: right;
	vertical-align: middle;
	padding-right: 10px;	
}
#header-redes-sociais .icon {
	color: #ffffff;
	font-size: 11pt;
	margin: 9px;
	cursor: pointer;
	display: inline-block;
	text-shadow: 1px 1px 2px #000000;
}
#header-redes-sociais .icon:hover{
	color: #1757a1;
	-webkit-transform: rotate(360deg);
	-webkit-transition-duration: 0.5s;
	text-shadow:none
}
/* --------------- HEADER BOX  -------------------------------*/
.header-box{
	display:flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.header-box-logo{
	text-align: center;	
}
.header-logo-img{
	max-width: 300px;
	margin: 20px auto;	
}
@media (max-width: 900px){
	.header-box{
		flex-direction: column;
		align-items: stretch;
	}	
}
/* ---------------------------------   NAV -------------------------------*/
nav{
	
}
#nav{
	min-height:45px;
}
@media (max-width: 900px){
	#nav{
		background-color: #f6f6f6;
	}	
}
/* ----------------------------- BREADCRUMB ------------------------------------ */
#rbBreadcrumb{
	border-bottom: solid 3px #d4aa00;
	background-color: #1757a1;
}
.breadcrumb{
	padding:10px 20px;
}
.barra{
	color:#D4AA00;
}
.container-box.breadcrumb{
	width:100%;
	max-width:1200px;
	padding:5px 0px;
}
span.breadcrumbs.text {
	font-size: 0.8rem;
	color: #ffffff;
}
/* --------------- AMADO ROBERTO -------------------------------*/
main{
}
#main{
flex:auto;
}
.main-flex{
	min-height: 200px;
}
.main-box{
	padding:0px;
}
@media (max-width: 900px){
	.container-box.main-flex{
		max-width:800px;
	}	
	.main-box{
		padding: 10px;
	}
}
h1.main-titulo{
	font-size:1.3rem;
	color:#1757A1;
	margin:20px;
}
/* ------- Publicações  ------- */
#IDPublicacoes {
	overflow: hidden;
}
#Publicacoes {
	margin: 10px;
}
#Publicacoes ul{
	display: flex;
	margin: 0px;
	flex-wrap: wrap;
	justify-content: space-between;
}
#Publicacoes li {
	display: flex;
	margin: 10px;
	width: 100%;
	position: relative;
	max-width: 30%;
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
	border-radius: 3px;
	flex-direction: column;
	justify-content: space-between;
	gap:0;
}
#Publicacoes p {
	margin:10px 0 0 0;
}
#Publicacoes h3 {
	/*color: #ed028c;*/
	margin: 0;
}
#Publicacoes .pub_textos {
	/*height: 130px;*/
	padding: 10px 20px;
	border-bottom: 1px solid #ececec;
	min-height:275px;
}
#Publicacoes .pub_textos a {
	color: #7d7870;
	text-decoration: none;
}
#Publicacoes .infobuttons{
	display: block;
	margin: 5px auto;
	width: fit-content;
}
#Publicacoes .info, .info{
	/*position:absolute;*/
	bottom: 16px;
	font-size: 12px;
	display: inline-block;
	margin: 0;
	color: #fff;
	margin: 0px 5px 0px 10px;
}
#Publicacoes .icon {
	bottom: 16px;
	font-size: 12px;
	display: inline-block;
	margin: 0;
	color: #fff;
	margin: 0px 5px;
}
@media (min-width: 900px){
	#Publicacoes .info, .info{
		margin: 5px;
		display:table;
	}
	 #Publicacoes .icon {
	 	margin: 0 5px 0 0;
	 }
}
@media (max-width: 900px){
	#Publicacoes .info, .info{
		margin: 0 auto;
		display:table;
	}
	#Publicacoes .pub_textos{
		min-height:230px;
	}
}
#Publicacoes .info2, .info2 {
	font-family: verdana !important;
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 5px;
	margin-right: 2px;
	background-color: #1757a1;
	border: solid 1px #fff;
	cursor: help;
	/*height: 20px;*/
	display: inline-block;
	color: #fff;
}
#Publicacoes .info2:hover .icon, .info2:hover {
	color: #fff !important;
	/*background-color: #26447b !important;
	border: 0px solid #fff !important;*/
}
#Publicacoes .pic {
	width: 100%;
	max-width: 355px;
	height: auto;
	max-height: 200px;
	min-height: 200px;
	overflow: hidden;
	-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: 3px 3px 0 0;
	margin:0;
	background-color: #f7f7f7;
}
#Publicacoes .pic  a{
	display:inline-block;
	margin: 0;
}
@media (max-width: 900px){
	#Publicacoes li {
		max-width:45%;
	}
	#Publicacoes .pic {
		min-height: auto;
	}	
}
@media (max-width: 620px){
	#Publicacoes li {
		max-width:95%;
	}

	#Publicacoes .pic {
		max-width: 100%;
		max-height: 100%;
	}
}
.pubautor{
	display:inline-block;
}
.imgautor{
	float:left;
	margin:0px 20px 0 40px;
}
/*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: 110%;
	height: auto;
	margin: -10px;
}
#Publicacoes img {
}
#Publicacoes hr {
	margin: 5px 0 15px 0;
	display: none;
}
#Publicacoes .icon-zoom-in:hover {
	color: #ed028c;
	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;
}
/* --------------- AMADO ROBERTO -------------------------------*/
#adamo-roberto{
	background-color: #ffffff;
	flex: 1;
	position:relative;
}
.adamo-roberto{
	background-color: #002951;
	border-bottom: solid 5px rgb(212 170 0);
}
.adamo-roberto-group {
    padding: 0;
    display: flex;
    align-items:center;
}
.container-box.adamo-roberto-flex{
	gap:20px;
	padding-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
@media (max-width: 900px){
	.container-box.adamo-roberto-flex{
		padding: 20px 10px;	
	}
}
.img-adamo{
	border: solid 2px #d4aa00;
 	background-color: #ebeef1;
	border-radius: 20px;
	margin:45px;
}
.box-text{
	display:flex;
	flex-direction:column;
	/*gap:15px;*/
}
.adamo.box-text h2{
	text-align:center;
	font-size:1.5rem;
	color: #ffffff;
	margin:20px;
}

@media (max-width:720px){
	.adamo-roberto-group {
	    	align-items: center;
	    	flex-direction: column;
	}
	.adamo.box-text h2{
		text-align:center;
	}		
}

.box-text ul{
	display:flex;
	flex-direction:column;
}
.box-text li{
	text-align:left;
	font-size:1rem;
	color: #ffffff;
	margin: 5px 20px 5px 20px;
}
.adamo-roberto-texto  p{
	font-size: 0,9rem;
	color: #555;
	line-height: inherit;
	margin-top: 0;
	margin-bottom: 0,2rem;
}
.citacao{
	padding-bottom:10px;
	display: flex;
	flex-direction: row;
}
.box-comentario{
	height: 100%;
	gap: 15px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 1050px;
	margin: 10px auto;	
}
.box-comentario p{
	color: #ffffff;
	margin: 0px;
}
.citacao-texto p{
	text-align:center;
	flex-direction: row;
	font-size: 1.1rem;
}
.assinatura{
	padding-top: 10px;
	display: flex;
	align-items: center;
	color: #D4AA00;
	font-size: 1.3rem;
	justify-content: center;
}
/*--------------- TRATAMENTO PSICANALITICO -------------------------------*/
#tratamento-psicanalitico{
	padding:20px 0px 20px 0px;
}
.container-box .tratamento-psicanalitico-flex{
	display:flex;
	flex-direction:column;
	gap:15px;
}
.box-text h2{
	align-items:center;
	font-size:2rem;
	color:#1565a3;
	text-align:center;
}
.group-card{
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	flex-wrap: wrap;
}
.box-card{
	margin: 10px;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}
.base-card{
	margin: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.card{
	width: 350px;
	height: 150px;
	display: flex;
	flex-direction: row;
	border: solid 0px #d4aa00;
	border-radius: 20px;
	background-color: #1757a1;
	overflow: hidden;
	position: relative;
	justify-content: center;
	align-items: center;
	/*box-shadow: 6px 7px 3px rgba(0, 0, 0, 0.15);*/
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card::before{
	content: "";
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 1;
	transform: scale(1.05);
	transition: opacity 0.6s ease, transform 0.6s ease;
	z-index: 1;
	border-radius: 10px;
}
.card:hover::before{
	background-color: #1757a1;
	opacity: 0;
	transform: scale(1);
}
.card:hover{
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
	transform: translateY(-4px);
}
/* Texto acima da imagem */
.card > * {
	position: relative;
	z-index: 2;
}
/* Imagens específicas por card */
.card-1 .card::before { background-image: url('../imagens/card/estresse-pos-traumatico.webp'); }
.card-2 .card::before { background-image: url('../imagens/card/sindrome-do-panico.webp'); }
.card-3 .card::before { background-image: url('../imagens/card/sindrome-de-burnout.webp'); }
.card-4 .card::before { background-image: url('../imagens/card/angustia-e-tristeza.webp'); }
.card-5 .card::before { background-image: url('../imagens/card/terapia-de-casal.webp'); }
.card-6 .card::before { background-image: url('../imagens/card/transtorno-disformico-corporal.webp'); }
.card-7 .card::before { background-image: url('../imagens/card/bipolaridade.webp'); }
.card-8 .card::before { background-image: url('../imagens/card/depressao.webp'); }
.card-9 .card::before { background-image: url('../imagens/card/ansiedade.webp'); }
.card-10 .card::before { background-image: url('../imagens/card/adolecencia.webp'); }
.card-11 .card::before { background-image: url('../imagens/card/sindrome-de-borderline.webp'); }
.card-12 .card::before { background-image: url('../imagens/card/lgbtqia-em-analise.webp'); }
/*Texto card*/
.text-card{
	text-align: center;
	position: relative;
	z-index: 2;
	transition: color 0.3s ease;
	font-size: 1.2rem;
	font-weight: bold;
	color: #ffffff;
	line-height: inherit;
	margin-top: 0;
	margin-bottom: 0.2rem;
}
.card:hover .text-card{
	opacity: 0;
}
.hover-text {
	position: absolute;
	text-align: center;
	color: #fff;
	font-size: 1.0rem;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	padding: 10px;
}
.hover-text a{
	display:block;
	padding:15px;
}
.hover-text a:hover{
	color:#fff;
} 
.card:hover .hover-text {
	opacity: 1;
	pointer-events: auto;
	cursor: pointer;	
}
.card span{
	font-size:12px;
}
@media (max-width: 900px) {
	.card:hover .text-card {
		/* Desabilita hover no mobile */
		opacity: 1;
	}
	.card:hover .hover-text {
		opacity: 0;
		pointer-events: none;
	}

	.card.ativo .text-card {
		opacity: 0;
	}

	.card.ativo .hover-text {
		opacity: 1;
		pointer-events: auto;
		cursor: pointer;
	}
}

/* --------------- INTERAÇÃO COM O PSICANALISTA -------------------------------*/
#interacao{
	margin: 0px;
	background-color: #1757A1;
	flex-direction: row;
	justify-content: space-evenly;
	background-image: url(../imagens/banner/banner-adamo-roberto.webp);
	background-repeat: no-repeat;
	background-size: cover;
}
.img-interacao{
	background-size: cover;
	z-index:1;
}
.container-box.interacao-flex{
	gap: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
	padding: 50px 30px;
}
@media (max-width: 900px){
.container-box.interacao-flex{
	width: 100%;
	height:100%;
	max-width: 800px;
	}
}
.div-insta{
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 30px;
	margin: 10px;
	gap: 10px;
}
.interacao-flex .icon-instagram{
	margin:0 !important;
	color: #fff;
}
@media (max-width:600px){
	h2.texto-interacao{
	text-align:center !important;
	}
	.container-box.interacao-flex {
	align-items: center;
	}
}
h2.texto-interacao{
	margin-right: 0px;
	font-size: 1,5rem;
	color: white;
	text-align: right;
}
span.texto-interacao{
	color:white;
	text-align:right;
}
span.btn-interacao {
	padding: 6px 12px;
	background-color: #d4aa00;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	color: #ffffff;
	font-size: 0.9rem;
}
span.btn-interacao:hover {
	background-color: #f6f6f6;
	color: #305729;
}
/*btn-interacao .text-button {
	color: #ffffff;
	font-size: 0.9rem;
	/*font-weight: bold;*
}*/
/* Hover do botão altera o texto */
button:hover {
	background-color: #ffffff;
}
button:hover .text-button {
	color: #1757A1;
}
/* --------------- PUBLICAÇÕES -------------------------------*/
#publicacoes{
	min-height: 100px;
	background-color: #dfdfdf;
}
/* --------------- FOOTER -------------------------------*/
footer{
	background-color: #1757a1;
	border-top: solid 9px #d4aa00;
}
#footer{
	flex: 1;
	flex-direction: column;
}
#footer a{
	color:#fff;
	font-size:14px;
}
#footer a:hover{
	color:var(--yellow);
}
#footer hr{
	border-top: 2px solid #b80b07;
	border-bottom: 2px solid #b80b07;
	width: 290px;
	margin: 20px 10px;
	text-align: left;
}
#footer h2{
	padding-bottom: 5px;
	border-bottom: solid 3px #D4AA00;
	font-size: 1.2rem;
	color: #fff;
	margin: 10px 26px 0 10px;
}
#footer span{
	font-size:0.8rem;
	color:#fff;
}
.foooter-redes-sociais-icons{
	text-align:center
}
#footer .icon{
	font-size:23px;
	margin:20px;
	display: inline-block;
}
#footer .fa{ 
	color:var(--yellow);
	margin: 0 10px;
	font-size: 17px;
}
.footer-flex{
	padding: 20px;
	gap:20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
@media (max-width: 900px){
	.footer-flex{
		max-width: 600px;
		flex-direction: column;
		width: 100%;
		height: 100%;
	}
}
.footer-address{
	font-style:normal;
	/*padding:10px;*/
	width:33%;
	display:flex;
	flex-direction:column;
	gap:10px;
	margin:0;
}
@media (max-width: 900px){
	.footer-address{   
		width: 100%;
		flex-direction: column;
	}
}
.footer-address ul{
	display:flex;
	flex-direction:column;
	margin: 0px;
	gap: 5px;
	list-style: none;
	padding: 0;	
}
.footer-address li{
	margin: 4px 0;
}
.footer-redes-sociais{
	padding:10px;
	width:30%;
	display:flex;
	flex-direction:column;
	justify-content: center;
}
@media (max-width: 900px){
	.footer-redes-sociais{
	    width:100%;
	}
}
.footer-redes-sociais-icons{
	gap: 20px;
	margin: 9px;
	cursor: pointer;
	display: flex;
	justify-content: center;	
}
.footer-logo-adamo{
	display: flex;
	flex-direction: row;
	justify-content: center;	
}
.footer-logo-adamo img{
	width:100%;
	max-width:300px;
}
.footer-mensagem{
	/*padding: 10px;*/
	width:33%;
	display:flex;
	flex-direction:column;
}	
@media (max-width: 900px){
	.footer-mensagem{
	width:100%;	
	}
}
/*-------- FOOTER LINE -------*/
.footer-line{
	padding: 10px;
	background-color: #d4aa00;
}
.direitos-reservados{
	gap:10px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.direitos-reservados p{
	color:#fff;
	font-size:12px;
	margin: 0 10px;
	text-align:center;
}
.direitos-reservados img{
	margin:0;
}
.direitos-reservados span{
	font-size:0.8rem;
	color:#1757a1;
}
/* ------- FORMULÁRIO MINI ------- */
#form_mini {
	width: 95%;
	font-family: var(--font-family-default);
	color: #fff;
	font-weight: bold;
	margin: 10px;
	display: table;
	text-align: left;
	box-sizing: border-box;
	text-align: left;
}
.form_mini_input, .form_mini_textarea {
	/* width: 100%; */
	min-width: 200px;
	background-color: #115099;
	border: 1px #ffffff solid;
	border-radius: 3px;
	height: 28px;
	margin: 5px 0;
	font-family: var(--font-family-default);
	font-size: 12px;
	color: #ffffff;
	padding-left: 10px;
	font-weight: normal;
	width: 99%;
}
.form_mini_textarea {
	height: 60px;
}
.form_mini_submit {
	font: 16px/23px 'Poppins', sans-serif;
	font-weight: bold;
	width: 95px;
	float: right;
	margin: 7px 0 5px 5px;
	display: inline-block;
	padding: 0px 10px;
	cursor: pointer;
	border-radius: 25px;
	padding: 6px 12px;
	color: #ffffff;
	background-color:#d4aa00;
	text-decoration: none;
	/*transition: background-color 1.5s ease;*/
}
.form_mini_submit:hover {	
    background: #e8edf0;
    color: #1757a1;
    	/*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: #999999;
	font: 12px 'Poppins', sans-serif;
	font-weight: normal;
}
.form_mini_input:-moz-placeholder, .form_mini_textarea:-moz-placeholder {
	color: #999999;
	font: 16px 'Poppins', sans-serif;
	font-weight: bold;
}
.form_mini_input::-moz-placeholder, .form_mini_textarea:-moz-placeholder {
	color: #999999;
	font: 16px 'Poppins', sans-serif;
	font-weight: bold;
}
.form_mini_input:-ms-input-placeholder, .form_mini_textarea:-ms-input-placeholder {
	color: #999999;
	font: 16px 'Poppins', 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;
	margin-top: 2px;
	margin: 2px 0 0 10px;
}
@media (max-width: 900px){
	#form_mini {
		margin: 10px;
	}
}	
/* ------------------ FORM BUSCA -------------------------------*/
.header-busca{
	display:inline-block;
	margin: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: 28px;
	margin: 0 0 0 2px;
}
#busca_form_mini input[placeholder]{
	color: #fff;
	font-style: normal;
	font-size:12px;
	width: 250px;
	background-color: #fff;
}
#busca_form_mini input[type=submit]{
	border-style: none;
	border-color: inherit;
	border-width: 0;
	background-color: #2b2b2b;
	cursor: pointer;
	height: 28px;
	width: 45px;
	margin: 0;
	font-family: var(--font-base-family);
	font-size: 10px;
	color: #dfdfdf;
	border-radius: 3px;
	/*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);
}
/* ------- 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%);*/
}
.form_table{
	margin:0 auto;
	padding:10px;
}
@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, #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: #333;
}
#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', sans-serif;
	color: #fff;
	font-weight: bold;
	margin: 10px 0;
	display: table;
	box-sizing: border-box;
	text-align: center;
}

.form_mini_input,
.form_mini_textarea {
	width: 98%;
	min-width: 200px;
	background-color: #fff;
	border: 1px solid #3f3f3f;
	border-radius: 3px;
	margin: 3px 0 3px 8px;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	color: #333;
	padding-left: 10px;
	font-weight: normal;
	height: 28px;
}
.form_mini_textarea {
	height: 60px;
}
.form_mini_submit {
	font: 16px/23px 'Questrial', sans-serif;
	width: 95px;
	float: right;
	margin: 7px 0 0 5px;
	display: inline-block;
	padding: 4px 20px;
	cursor: pointer;
	border-radius: 25px;
	color: #fff;
	background-color: #d4aa00;
	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;
}
.form_mini_submit:active,
.form_mini_submit:focus {
	border: 0;
}
/* Placeholder unificado */
.form_mini_input::placeholder,
.form_mini_textarea::placeholder {
	color: #c0c0c0;
	font: 14px 'Open Sans', sans-serif;
	font-weight: normal;
}
/* Fallbacks para navegadores antigos */
.form_mini_input:-moz-placeholder,
.form_mini_textarea:-moz-placeholder,
.form_mini_input::-moz-placeholder,
.form_mini_textarea::-moz-placeholder,
.form_mini_input:-ms-input-placeholder,
.form_mini_textarea:-ms-input-placeholder {
	color: #c0c0c0;
	font: 14px 'Open Sans', sans-serif;
	font-weight: normal;
}
.form_mini_erro {
	color: red;
	font-size: 16pt;
}
.form_mini_ok {
	font-size: 10pt;
	margin-left: 30px;
}
#form_mini p {
	font-size: 15px;
	color: #fff;
	font-weight: normal;
}
#form_mini hr {
	margin: 0;
	width: 100%;
}
/*
#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{
	min-width: 200px;
	background-color: #ffffff;
	border: 1px #3f3f3f solid;
	border-radius: 3px;
	height: 28px;
	margin: 3px 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	color: #333333;
	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 0 0 5px;
	display: inline-block;
	padding: 0px 10px;
	cursor: pointer;
	border-radius: 25px;
	padding: 4px 20px;
	color: #fff;
	background-color: #d4aa00;
	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;
}

/* ------------------------------ FANCYBOX ----------------------*/
.box-fancybox .box-foto{
	clip-path: inset(10px);
}
.box-fancybox-view{
	border: 0px solid aqua;
}

/* ------- Easy Tooltip ------- */
#easyTooltipBlue, #easyTooltip, a.capitulo, a.eventos, a.link_fundadores{
	font-family: 'Poppins', 'Open Sans', sans-serif;
	font-size: 12px;
	color: #fff;
}
#easyTooltipBlue{
	/*background:#900000 url("../../includes/scripts/easytooltip/bg.gif") repeat-x;*/
	width: 200px;
	padding: 5px 10px;
	border: 1px solid #195fa4;
}
#easyTooltip{
	width: 200px;
	padding: 5px 10px;
	border: 0px solid #fff;
	background: #195fa4;
	border-radius: 7px;
	font-weight: normal;
}
#IframeForm{
	display: block;
	margin-left: auto;
	margin-right: auto;
	border: 0;
	max-width: 510px;
	height: 650px;
	width: 100% !Important;
	min-width: 100% !Important;
}
@media (min-width: 865px){
	#IframeForm{
		min-width: 100% !Important;
	}
}






