@charset "UTF-8";

/*--------------------------------------------------------------
BASIC STUFF
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

* { 
	box-sizing: border-box; 
}

body {
	color: #747474;
	cursor: default;
	font-family: "Open Sans", Arial, sans-serif;
	line-height: 1;
	/*padding: 150px 0 0 0;*/
}

/*--------------------------------------------------------------
RESPONSIVE ADJUSTS
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

@media (min-width: 992px) {
	.container { width: 990px; }
}

/*--------------------------------------------------------------
TYPOGRAPHY
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

h1, h2, h3,
h4, h5, h6 {
	font-family: "Yanone Kaffeesatz", sans-serif;
	font-weight: 300;
	margin: 0 0 15px 0;
}

h1 a, h2 a, h3 a,
h4 a, h5 a, h6 a {
	color: #686868;
}

h1 a:hover, h2 a:hover, h3 a:hover,
h4 a:hover, h5 a:hover, h6 a:hover {
	color: #282828;
	text-decoration: none;
}

h2 {
	font-size: 2em;
}

p {
	line-height: 1.5;
}

/*--------------------------------------------------------------
IMAGES
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

img.size-full {
	margin: 0;
}

/*--------------------------------------------------------------
BUTTONS
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

.btn {
	background: #2e3191;
	border: 0;
	border-radius: 0;
	color: #fff;
	font-family: "Yanone Kaffeesatz", sans-serif;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.btn:hover,
.btn:focus,
.btn:active {
	background: #1f2170;
	color: #fff;
	outline: 0 none;
}

/*--------------------------------------------------------------
INPUT FIELDS
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

label {
	font-weight: 300;
}

.form-control {
	background: #fcfcfc;
	border-radius: 0;
}

.form-control:hover,
.form-control:focus,
.form-control:active {
	background: #fff;
	border: 1px solid #2e3191;
	box-shadow: 0 0 0 transparent;
}

.required {
	color: #c20000;
}

.wpcf7-not-valid {
	border: 1px solid #d70000 !important;
}
.wpcf7-not-valid-tip {
	display: none !important;
}
.wpcf7-validation-errors {
	background-color: #fcf8e3 !important;
	border: 1px solid #faebcc !important;
	border-radius: 3px !important;
	color: #8a6d3b !important;
}
.wpcf7-mail-sent-ok {
	background-color: #dff0d8 !important;
	border: 1px solid #d6e9c6 !important;
	border-radius: 3px !important;
	color: #3c763d !important;
}
.wpcf7-response-output {
	margin: 30px 0 !important;
	padding: 8px 12px !important;
}

/*--------------------------------------------------------------
INPUT FIELDS
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

.row.divide [class*='col-']:not(:last-child):after {
 	background: #eee;
 	bottom: 0;
	content: "";
	display: block;
	min-height: 70px;
	position: absolute;
	right: 0;
	top:0;
	width: 1px;
}


/* =Barra do Topo
-------------------------------------------------------------- */

.topbar {
	background: #fff;
}

.topbar .bar {
	border-bottom: 1px solid #e9e9e9;
	overflow: hidden;
	padding: 10px 0;
}

.topbar .container {
	position: relative;
}

.topbar .menu {
	font-size: .85em;
	float: left;
	margin: 0;
	padding: 0;
	/*text-transform: uppercase;*/
}

.topbar .menu-item {
	display: inline-block;
	line-height: 24px;
	margin-right: 24px;
}

.topbar .menu-item a {
	color: rgba(0, 0, 0, .6);
	font-weight: 600;
}

.topbar .menu-item a:hover,
.topbar .menu-item a:active {
	color: rgba(0, 0, 0, 1);
	text-decoration: none;
}

.topbar .search {
	float: right;
	margin-left: 6px;
	position: relative;
}

.topbar .search .form-control {
	background: rgba(0, 0, 0, .07);
	border: 0;
	font-size: .8em;
	height: 24px;
	line-height: 24px;
	margin-bottom: 0;
	width: 220px;
}

.topbar .search .fa {
	color: rgba(0, 0, 0, .3);
	position: absolute;
	right: 5px;
	top: 5px;
}

.topbar .search .form-control:hover {
	background: rgba(0, 0, 0, .09);
}

.topbar .search .form-control:focus,
.topbar .search .form-control:active {
	background: rgba(0, 0, 0, .11);
}

.topbar .social {
	float: right;
}

/*=Noticias

-------------------------------------------------------------- */

#noticia {


font-family: 'Open Sans', Arial, sans-serif;
font-size: 1.2em;
font-weight: 700;
text-align: center;
text-transform: uppercase;


}




/*--------------------------------------------------------------
MAIN HEADER
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

#header {
	background: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,.1);
	height: 150px;
	position: relative;
	transition: all 0.3s;
	width: 100%;
	z-index: 9;
}

#header .branding {
	float: left;
	margin: 12px 0;
	transition: all 0.3s;
}

#header .branding a {
	background: url('../img/branding.png');
	background-size: 100% 100%;
	display: block;
	height: 126px;
	text-indent: -9999px;
	transition: all 0.3s;
	width: 258px;
}

/* TABLETS */

@media (max-width: 991px) {
	#header {
		height: 80px;
	}

	#header .branding {
		margin: 4px 0;
	}

	#header .branding a {
		height: 72px;
		width: 147px;
	}
}


/*--------------------------------------------------------------
NAVIGATION
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

#navigation {
	float: right;
	font-family: "Yanone Kaffeesatz", sans-serif;
	font-size: 1.2em;
	font-weight: 300;
	margin: 65px 0;
	text-align: right;
	text-transform: uppercase;
	transition: all 0.3s;
}

#navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#navigation li {
	display: inline-block;
	margin: 0 0 0 25px;
	padding: 0;
}

#navigation a {
	color: #888;
	position: relative;
}

#navigation a:hover {
	color: #444;
	text-decoration: none;
}

#navigation a:hover:before,
#navigation .current-menu-item a:before {
	background: url('../img/leaflets.png');
	content: '';
	display: inline-block;
	height: 14px;
	left: 50%;
	margin: -16px 0 0 -11px;
	position: absolute;
	width: 22px;
}


/* Submenu */

#navigation .sub-menu {
	background-color: #2e3192;
	display: none;
	padding: 0;
	position: absolute;
	text-align: left;
	width: 200px;
}

#navigation .sub-menu li {
	display: inline-block;
	margin: 10px 0 0 25px;
	padding-left: 5px;
	width: 200px;
}


#navigation .menu-item:hover .sub-menu {
	display: block;
}

#navigationd .sub-menu .menu-item {
	display: block;
	margin-left: 0;
	width: 100%;
}

#navigation .sub-menu .menu-item a {
	background-color: transparent;
	color: #888;
	margin-left: -25px;
	transition: background, .2s;

}

#navigation .sub-menu .menu-item a:hover {
	background-color: rgba(0, 0, 0, .1);
	margin-top: 10px;
}






/* ------------------*/







/* TABLETS */

@media (max-width: 991px) {
	#navigation {
		margin: 30px 0;
	}
}

/* MOBILE */

@media (max-width: 767px) {
	#navigation {
		background: #888;
		display: block;
		font-size: 1.5em;
		left: 0;
		margin: 0;
		position: absolute;
		text-align: center;
		top: 80px;
		width: 100%;
		z-index: 9;
	}

	#navigation li {
		display: block;
		margin: 0;
		width: 100%;
	}

	#navigation li a {
		border-bottom: 1px solid rgba(0,0,0,.1);
		color: #fff;
		display: block;
		font-weight: 400;
		padding: 14px;
	}

	#navigation a:hover:before,
	#navigation .current-menu-item a:before {
		display: none;
	}

	.navbar-toggle {
		background: #888;
		margin: 23px 0;
	}

	.navbar-toggle .icon-bar {
		background: #fff;
	}

	.navbar-collapse.collapsing,
	.navbar-collapse.in {
		overflow-y: inherit;
	}
}

/*--------------------------------------------------------------
MAIN CONTENT
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

#content {
	background: url('../img/main_page.jpg') no-repeat top center;
}

/* DESKTOP */

@media (min-width: 992px) {
	#content {
		min-height: 632px;
	}
}

/*--------------------------------------------------------------
SITE DESCRIPTION
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

.site_description {
	color: #fff;
	height: 160px;
	text-align: center;
}

.site_description h2 {
	display: block;
	font-family: "Yanone Kaffeesatz", sans-serif;
	font-size: 2.4em;
	font-weight: 300;
	margin: 0;
	text-shadow: 1px 1px 2px rgba(0,0,0,.5);
}

.site_description .symbol {
	background: url('../img/mini_symbol.png');
	display: inline-block;
	height: 42px;
	margin: 35px auto 5px auto;
	width: 26px;
}

/* MOBILE */

@media (max-width: 767px) {
	.site_description h2 {
		font-size: 2em;
	}

	.site_description .symbol {
		margin: 25px auto 5px auto;
	}
}

/*--------------------------------------------------------------
PRIMARY BANNER
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

.primary_banner {
	border-bottom: 2px solid #eee;
	/*margin: 0 0 15px 0;*/
	padding: 0 0 15px 0;
}

/*--------------------------------------------------------------
CENTERED CONTENT
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

#centered {
	background: #fff;
	padding: 15px;
}

/* DESKTOP */

@media (min-width: 992px) {
	#centered {
		min-height: 472px;
	}
}

/*--------------------------------------------------------------
CONTENT
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

.content {
	padding: 22px 0 0 0;
}

.archive .content {
	padding: 0;
}

/*--------------------------------------------------------------
SHARE BAR
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

.share-bar {
	margin-bottom: 15px;
	overflow: hidden;
	padding: 10px 0;
}

.share-bar .button {
	float: left;
	margin-right: 20px;
}

/*--------------------------------------------------------------
WIDGETS
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

.widget {
	/*border-top: 2px solid #eee;*/
	padding: 15px 0 0 0;
	margin: 0 0 15px 0;
}

.widget h3 {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 1.2em;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}

.widget p {
	font-size: .9em;
}

/* MOBILE */

@media (max-width: 767px) {
	.widget {
		border-top: 1px solid #ddd;
		margin: 15px 0 0 0;
		padding: 15px 0 0 0;
	}
}

.widget_events,
.widget_news,
.widget_videos {
	min-height: 224px;
}

/*--------------------------------------------------------------
WIDGET PARTNERS
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

.widget_partners {
	border-top: 2px solid #eee;
}

.partner a {
	background: url('../img/partners.png');
	display: inline-block;
	float: left;
	height: 100px;
	margin: 0 25px;
}

.partner_agcip a {
	background-position: 0 0;
	width: 143px;
}

.partner_indep a {
	background-position: -193px 0;
	width: 88px;
}

.partner_atac a {
	background-position: -332px 0;
	width: 183px;
}

.partner_carav a {
	background-position: -566px 0;
	width: 75px;
}

.partner_berg a {
	background-position: -692px 0;
	width: 164px;
}

#partners .item{
  margin: 3px;
}

#partners .item img{
  display: block;
  width: 100%;
  height: auto;
}

/* TABLETS */

@media (max-width: 991px) {
	.partner a {
		float: none;
	}
}

/*--------------------------------------------------------------
SIDEBAR
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

.sidebar {
	background: #e6e6e6;
	min-height: 442px;
	padding: 15px;
	text-align: right;
	text-transform: uppercase;
}

/* TABLETS */

@media (max-width: 991px) {
	.sidebar {
		min-height: auto;
		max-height: auto;
		text-align: left;
	}

	.sidebar h1 {
		margin: 0;
	}
}

/* MOBILE */

@media (max-width: 767px) {
	.sidebar h1 {
		font-size: 2em;
	}
}

/*--------------------------------------------------------------
ARCHIVES
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

.post-type-archive-artigo .post_thumbnail,
.post-type-archive-galeria .post_thumbnail,
.post-type-archive-noticia .post_thumbnail {
	margin: 0 0 8px 0;
}

.post-type-archive-video .post_thumbnail {
	margin-bottom: -5px;
}

.post-type-archive-galeria .post_thumbnail {
	margin-bottom: -5px;
}

.post-type-archive-artigo article {
	min-height: 280px;
}

/* MOBILE */

@media (max-width: 767px) {
	.post-type-archive-artigo article,
	.post-type-archive-noticia article {
		border-bottom: 1px solid #ddd;
		padding: 0 0 15px 0;
	}
}

.post-type-archive-evento article {
	margin: 0 0 30px 0;
}

/* MOBILE */

@media (max-width: 767px) {
	.post-type-evento-evento article {
		border-bottom: 1px solid #ddd;
		margin: 0 0 15px 0;
		padding: 0 0 15px 0;
	}
}

/*--------------------------------------------------------------
WORDPRESS CORE STUFF
LAST UPDATE: VERSION 1.3.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

/*--------------------------------------------------------------
THE FOOTER STUFF
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

#footer {
	background: #00adee;
	color: #2e3191;
	font-size: .9em;
	padding: 30px 0;
}

#footer a {
	color: #2e3191;
}

#footer a:hover {
	text-decoration: none;
}

/*--------------------------------------------------------------
PAGE HEADER
LAST UPDATE: VERSION 1.0
AUTHOR: VANDERLEI FONTANELLI
-------------------------------------------------------------- */
.page iframe {
	margin: 0 auto;
	display: block;
}

.page-header {
	/*background: #e9e9e9;*/
	border: 0;
	margin: 0;
	padding: 40px 0;
	text-align: center;
}

.page-header h1 {
	background: url('img/divider.png') repeat-x center center;
	font-size: 2.7em;
	font-weight: 300;
	letter-spacing: -.04em;
	line-height: 28px;
	margin: 0;
	text-transform: uppercase;
}

.page-header span {
	background: #eaeaea;
	padding: 0 15px;
}

.page-header img {
	margin: 0 auto;
}


.page-header .site_description {
	color: #000;
}



/*--------------------------------------------------------------
FOOTER CIRCLE ICON
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

.fa-circle {
	color: #2e3191;
}

.fa-inverse {
	color: #00adee;
}

/*--------------------------------------------------------------
SOCIAL ICONS
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

/* DESKTOP */

@media (min-width: 992px) {
	.social {
		text-align: right;
	}
}

/* MOBILE */

@media (max-width: 767px) {
	.social {
		font-size: 1.8em;
		text-align: center;
	}

	.phone,
	.email,
	.address {
		margin: 0 0 15px 0;
	}
}

/*--------------------------------------------------------------
COPYRIGHT
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

#copyright {
	background: #00adee;
	font-size: .8em;
	padding: 0 0 30px 0;
}

/*--------------------------------------------------------------
PARTNERS SIGNATURE
LAST UPDATE: VERSION 1.0
AUTHOR: GUSTAVO FERREIRA
-------------------------------------------------------------- */

#partners_signature {
	float: right;
	/*text-align: center;*/
}

#partners_signature a {
	background: url('../img/partners_signature.png');
	display: inline-block;
	height: 15px;
	margin: 0 0 0 20px;
	text-indent: -9999px;
}

/* SIGMA PLUS */

#partners_signature #sigmaplus {
	width: 74px;
	background-position: 0 0;
}

/* KAZZAMBA */

#partners_signature #kazzamba {
	width: 64px;
	background-position: 0 -15px;
}

/* MOBILE */

@media (max-width: 767px) {
	#partners_signature {
		float: none;
		text-align: center;
	}

	#partners_signature a {
		margin: 10px 10px 0 10px;
	}
}



/* =Thumbnail
-------------------------------------------------------------- */

.thumbnail {
	background: #eee;
	border: 0;
	border-radius: 0;
	margin: 0;
	padding: 0;
}

/* =Conteúdo
-------------------------------------------------------------- */

.content {
	background: #fafafa;
	padding: 30px 30px 0 30px;
}

.content.widget {
	margin-bottom: 0;
}

.content .date {
	font-family: "Roboto Condensed", sans-serif;
	margin-bottom: 15px;
}

.content .files a {
	background-color: #ccc;
	border-color: #ccc;
	color: #333;
	margin-bottom: 15px;
	text-align: left;
	width: 100%;
}

.content .files a:hover,
.content .files a:focus {
	background-color: transparent;
}

.content .files a i.fa {
	color: #e0001b;
	margin-right: 6px;
}

@media (max-width: 767px) {
	.content {
		padding: 15px 15px 0 15px;
	}

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

/* =Busca Real Time
-------------------------------------------------------------- */
.searchwp-live-search-results {
	border-radius: 0 !important;
	width: 300px !important;
}

.searchwp-live-search-result p {
	padding: 0 !important;
}

.searchwp-live-search-result a {
	display: block;
	padding: 12px;
}

.searchwp-live-search-result a:hover {
	background-color: rgba(0, 0, 0, .05);
	text-decoration: none;
}


/* =Single de Vídeo
-------------------------------------------------------------- */

.player {
	position: relative;
	padding-bottom: 52%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.player iframe,
.player object,
.player embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.single-format-video h1.headline {
	margin: 15px 0;
}

.single-format-video p {
	margin: 0 0 60px 0;
}

.single-format-video .share-bar p {
	float: left;
	font-family: 'Roboto Condensed', sans-serif;
	margin-right: 15px;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.single-format-video .share-bar p {
		display: none;
	}
}



/* =Hentry (Post)
-------------------------------------------------------------- */

.widget .hentry {
	transition: opacity, .2s;
}

.widget .hentry:hover {
	opacity: .75;
}

.widget .hentry a {
	color: #353535;
}

.widget .hentry a:hover {
	text-decoration: none;
}

.widget .hentry .title {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.widget .hentry .format {
	color: #aaa;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 12px;
	margin: 3px 0;
	text-transform: uppercase;
}

/* =Hentry (Post) Grande
-------------------------------------------------------------- */

.hentry.full .thumbnail {
	position: relative;
}

.hentry.full .title {
	background: #fafafa;
	bottom: 0;
	font-size: 1.4em;
	font-weight: 400;
	height: 76px;
	line-height: 1.2;
	padding: 8px 0 0 12px;
	position: absolute;
	right: 0;
	width: 86%;
}

@media (max-width: 767px) {
	.hentry.full {
		margin-bottom: 30px;
	}
}

/* =Hentry (Post) Pequeno
-------------------------------------------------------------- */

.hentry.small {
	margin-bottom: 30px;
}

.hentry.small:last-child {
	margin-bottom: 0;
}

.hentry.small .thumbnail {
	float: left;
	height: auto;
	width: 25%;
}

.hentry.small .title {
	font-size: 1.4em;
	font-weight: 400;
	height: 60px;
	line-height: 1.2;
	padding-left: 10px;
	width: 75%;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.hentry.small .thumbnail {
		width: 36%;
	}

	.hentry.small .title {
		font-size: 1em;
		width: 64%;
	}
}


/* =Hentry (Post) Arquivos
-------------------------------------------------------------- */

.hentry.archive {
	margin-bottom: 30px;
}

.hentry.archive:last-child {
	margin-bottom: 0;
}

.hentry.archive .thumbnail {
	float: left;
	height: auto;
	width: 15%;
}

.hentry.archive .title {
	font-size: 1.4em;
	font-weight: 400;
	height: 66px;
	line-height: 1.2;
	padding-left: 10px;
	width: 85%;
}

@media (max-width: 767px) {
	.hentry.archive .thumbnail {
		width: 36%; 
	}

	.hentry.archive .title {
		font-size: 1em;
		width: 64%;
	}
}


