@charset "UTF-8";
/* 
    Projeto    : Site CB
    Autor      : David Martins
*/
/* GERAL */
@font-face {
  font-family: "Franklin Gothic Book";
  src: url("../fonts/Franklin Gothic Book.ttf");
}

@font-face {
  font-family: "Franklin Gothic Medium";
  src: url("../fonts/Franklin Gothic Medium.ttf");
}

* {
  margin: 0;
  padding: 0;
}

body, a, a:visited {
  font-family: "Franklin Gothic Book";
  color: #58585B;
}

a:hover, a:active, a:focus {
  text-decoration: none;
  color: #FBAF3F;
}

p {
  margin: 0;
}

table {
  display: inline-block;
  border-radius: 20px;
  border: 2px solid #B2B2B2;
  border-collapse: separate;
  text-align: center;
  max-width: 100%;
  overflow-x: auto;
  margin-top: 10px;
  margin-bottom: 20px;
}

table thead tr td, table thead tr th {
  padding: 5px 15px;
  background-color: #BCD75E;
  color: #FFFFFF;
  text-align: center;
  border-bottom: 2px solid #B2B2B2;
}

table thead tr td:first-of-type, table thead tr th:first-of-type {
  border-top-left-radius: 17px;
}

table thead tr td:last-of-type, table thead tr th:last-of-type {
  border-top-right-radius: 17px;
}

table tbody {
  color: #BBBDC0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

table tbody tr:last-of-type td {
  border-bottom: none;
}

table tbody tr th {
  padding: 5px 15px;
  background-color: #BCD75E;
  color: #FFFFFF;
  text-align: center;
  border-bottom: 2px solid #B2B2B2;
}

table tbody tr th:first-of-type {
  border-top-left-radius: 17px;
}

table tbody tr th:last-of-type {
  border-top-right-radius: 17px;
}

table tbody tr td {
  border-bottom: 2px solid #B2B2B2;
  padding: 5px 15px;
  text-align: left !important;
}

.titulo {
  font-family: "Franklin Gothic Medium";
  color: #006738;
  text-transform: uppercase;
  font-size: 1.1em;
}

hr {
  margin-top: 15px;
  margin-bottom: 15px;
}

.breadcrumb {
  margin-bottom: 30px;
}

.breadcrumb li.active {
  color: #006738;
}

.breadcrumb > li {
  padding-top: 0 !important;
}

article header {
  padding-bottom: 15px;
}

article header .categoria_pagina {
  font-family: "Franklin Gothic Medium";
  color: #006738;
  text-transform: uppercase;
  font-size: 1em;
  margin-top: 0;
  margin-bottom: 5px;
  width: 80%;
}

article header .titulo_pagina {
  font-family: "Franklin Gothic Medium";
  color: #006738;
  text-transform: uppercase;
  font-size: 1.1em;
  margin-top: 0;
  margin-bottom: 5px;
  width: 80%;
}

article header .titulo_pagina a {
  font-family: "Franklin Gothic Medium";
  color: #006738;
  font-size: 1em;
}

article header .sub_titulo_pagina {
  font-size: 0.9em;
  margin-top: 5px;
  margin-bottom: 0;
}

article header hr {
  margin-top: 0;
  margin-bottom: 0;
}

article header .data {
  color: #BBBDC0;
  font-size: 0.9em;
  margin-top: 5px;
}

.acoes_container {
  position: relative;
  float: left;
  width: 100%;
  background-color: #F1F1F1;
  font-size: 1em;
  border-radius: 4px;
  padding: 8px 15px;
  margin-top: 30px;
}

.acoes_container a span {
  text-transform: uppercase;
  margin: 0 15px;
}

.acoes_container .retornar {
  float: left;
}

.acoes_container .compartilhar {
  float: right;
}

ul.lista {
  padding-left: 15px;
}

ul.lista ul {
  padding-left: 15px;
}

ul.lista li {
  list-style-type: none;
  padding-top: 10px;
}

ul.lista li:before {
  content: "\f04b";
  font-family: FontAwesome;
  color: #BCD75E;
  font-size: 0.7em;
  padding-right: 10px;
  vertical-align: 1px;
}

ul.lista li ul li:before {
  content: "\f111";
  font-size: 0.65em;
  line-height: 1.5em;
}

.pagination > li {
  padding: 6px 0;
}

.pagination > li > a {
  padding: 0 12px;
  color: #BBBDC0;
  background-color: transparent;
  border: none;
  border-right: 2px solid #BBBDC0;
}

.pagination > li > a:hover, .pagination > li > a:focus {
  color: #BCD75E;
  background-color: transparent;
}

.pagination > li.active > a {
  color: #BCD75E;
  background-color: transparent;
  border-color: #BBBDC0;
}

.pagination > li.active > a:hover, .pagination > li.active > a:focus {
  color: #BCD75E;
  background-color: transparent;
  border-color: #BBBDC0;
}

.pagination > li:first-of-type > a, .pagination > li:last-of-type > a, .pagination > li:nth-last-of-type(2) > a {
  border: none;
}

.imagem_container {
  width: 100%;
  margin-bottom: 15px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border: 1px solid #F1F1F1;
}

.imagem_container.borda_escura {
  border-color: #E6E7E8;
}

.imagem_container img {
  width: 100%;
  height: auto;
  border-top-right-radius: 20px;
}

.imagem_container .descricao_imagem {
  display: block;
  width: 100%;
  padding: 10px 10px;
  text-align: center;
  background-color: #F1F1F1;
  color: #BBBDC0;
  font-size: 1em;
  border-bottom-left-radius: 20px;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.imagem_container .descricao_imagem.verde {
  background-color: #BCD75E;
  opacity: 0.8;
  color: #FFFFFF;
}

.imagem_container .descricao_imagem.verde a {
  color: #FFFFFF;
}

.imagem_container:hover .descricao_imagem.verde {
  opacity: 1;
}

@media (min-width: 992px) {
  .acoes_container {
    background-color: transparent;
    font-size: 1em;
    border-radius: 0;
    padding: 0;
  }
  .acoes_container hr {
    height: 1px;
    margin-top: 0;
    margin-bottom: 5px;
    border: 0px;
    border-top: 1px solid #E6E7E8;
  }
  .acoes_container a span {
    text-transform: capitalize;
  }
}

.btn-verde {
  color: #FFFFFF;
  background-color: #006738;
  border-color: transparent;
}

.btn-verde:hover {
  color: #FFFFFF;
  background-color: #004425;
}

.font-cinza_m1 {
  color: #B2B2B2;
}

/* Definindo um espaçamento maior entre o container e o aside nas páginas que tem aside */
#altura_aside > .row > .col-xs-12.col-md-8, .aside {
  padding: 30px;
}

/* Gambiarra para deixar Ações sempre no fim*/
#altura_aside > .row > .col-xs-12.col-md-8 {
  height: 100%;
}

#altura_aside > .row > .col-xs-12.col-md-8 > article footer ul {
  margin: 0;
}

.p-30 {
  padding: 30px;
}

.altura-padrao {
  min-height: auto;
}

@media (min-width: 992px) {
  #altura_aside > .row > .col-xs-12.col-md-8 > article,
  .altura-padrao {
    min-height: 500px;
  }
}

.noticia a {
  word-break: break-word;
}

/* iframe full */
.content_iframe {
  margin: 0 auto;
  width: 95%;
  height: 780px;
  margin-bottom: 40px;
}

.content_iframe iframe {
  width: 100%;
  height: 100%;
}

/* HEADER */
@media (min-width: 992px) {
  header#header {
    border-top: 6px solid #58585B;
    border-bottom: 6px solid #006738;
    background: url("../img/bg-header.png") no-repeat;
    background-color: #BCD75E;
    background-position: right top;
    position: relative;
    z-index: 102;
  }
  header#header .container {
    background: url("../img/planta.png") no-repeat;
    background-position: right bottom;
  }
  header#header .logo {
    margin-top: 30px;
  }
  header#header .links {
    font-size: 23px;
    color: #006738;
    margin-bottom: 5px;
  }
  header#header .links a {
    color: #FFFFFF;
  }
  header#header .links a:hover, header#header .links a:active, header#header .links a:focus {
    color: #FFFFFF;
  }
  header#header .links #cb {
    color: #006738;
  }
  header#header .links #ufrn {
    font-weight: bold;
  }
  header#header .navs-topo {
    z-index: 200;
    position: absolute;
    right: 0;
    top: 0;
  }
  header#header nav {
    position: relative;
    float: right;
    background-color: #58585B;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    margin-left: 20px;
  }
  header#header nav ul {
    float: left;
    margin: 0;
    list-style: none;
  }
  header#header nav ul li {
    position: relative;
    display: block;
    float: left;
  }
  header#header nav ul li a {
    color: #F1F1F1;
    padding: 0px 12px;
    margin-bottom: 3px;
    border-right: 2px solid #B2B2B2;
    display: block;
    font-size: 12px;
  }
  header#header nav ul li a:hover, header#header nav ul li a:active, header#header nav ul li a:focus {
    color: #FBAF3F;
  }
  header#header nav ul li a i {
    margin-right: 5px;
  }
  header#header nav ul li:last-of-type a {
    border: none;
  }
  header#header nav#nav2 ul li a i {
    margin-right: 0;
  }
  header#header #input-busca {
    float: right;
    margin-top: 70px;
    margin-right: 10px;
    width: 180px;
    height: 40px;
    border-radius: 20px;
    padding-left: 20px;
    background-color: #FFFFFF;
  }
  header#header #input-busca input[type="text"] {
    width: 120px;
    height: 40px;
    border: none;
    position: relative;
    float: left;
  }
  header#header #input-busca input[type="text"]:focus {
    outline: none;
  }
  header#header #input-busca button[type="submit"] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    position: absolute;
    background-color: #FBAF3F;
    color: #FFFFFF;
    font-size: 20px;
  }
  header#header #input-busca:hover {
    border: 4px solid #FBAF3F;
    padding-left: 16px;
  }
  header#header #input-busca:hover input[type="text"] {
    height: 32px;
  }
  header#header #input-busca:hover button[type="submit"] {
    margin-top: -4px;
    margin-right: -4px;
    background-color: #006738;
  }
}

/* barra do governo  */
#barra-brasil #brasil-vlibras .logo-vlibras:hover + .link-vlibras,
#barra-brasil #brasil-vlibras .logo-vlibras:active + .link-vlibras,
#barra-brasil #brasil-vlibras .logo-vlibras:focus + .link-vlibras,
#barra-brasil #brasil-vlibras .link-vlibras:hover,
#barra-brasil #brasil-vlibras .link-vlibras:active,
#barra-brasil #brasil-vlibras .link-vlibras:focus {
  z-index: 9 !important;
}

#barra-brasil nav:active ul.list,
#barra-brasil nav:focus ul.list,
#barra-brasil nav:hover ul.list {
  height: auto !important;
}

#barra-brasil #brasil-vlibras .link-vlibras {
  line-height: 1.6;
  text-align: center;
  margin-top: 33px;
}

#barra-brasil #brasil-vlibras .link-vlibras span {
  display: inline-block;
  text-align: left;
  width: 132px;
}

#barra-brasil #brasil-vlibras .link-vlibras a {
  color: inherit;
}

#barra-brasil #wrapper-barra-brasil {
  z-index: 999;
  max-width: 1170px;
}

@media (max-width: 1199px) {
  #barra-brasil #wrapper-barra-brasil {
    max-width: 970px;
  }
}

@media (max-width: 768px) {
  #barra-brasil #wrapper-barra-brasil {
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  #barra-brasil #brasil-vlibras {
    right: -6px !important;
  }
}

#barra-brasil .list {
  right: 45px !important;
}

#barra-brasil .brasil-flag a {
  padding-left: 36px !important;
  background-position: 2px !important;
}

@media (max-width: 767px) {
  #barra-brasil .brasil-flag a {
    padding-left: 51px !important;
    background-position: 15px !important;
  }
}

/* NAV */
.navbar {
  position: relative;
  margin-bottom: 0;
  height: 50px;
  background-color: #BCD75E;
  z-index: 500;
  border: none;
}

.navbar .navbar-header {
  position: relative;
  width: 100%;
  height: 50px;
}

.navbar .navbar-header a {
  padding-top: 10px;
  position: absolute;
  left: 50%;
  margin-left: -50px;
}

.navbar .navbar-header > button {
  float: left;
  margin-left: 5px;
  margin-top: 5px;
  margin-bottom: 0;
}

.navbar .navbar-header button span {
  background-color: #FFFFFF;
  width: 25px;
  height: 4px;
  border-radius: 0;
}

.navbar .pesquisa-touch {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
}

.navbar .pesquisa-touch button[type="button"] {
  padding: 11px 15px;
  background-color: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 20px;
  margin: 0;
}

.navbar .pesquisa-touch button[type="button"]:focus {
  border: none;
  outline: none;
}

.navbar .pesquisa-touch > button[type="button"]:before {
  content: "\f00d";
  font-family: FontAwesome;
}

.navbar .pesquisa-touch > button[type="button"].collapsed:before {
  content: "\f002";
}

.navbar .pesquisa-touch form {
  position: absolute;
  width: 220px;
  top: 50px;
  right: 0;
  border: none;
  z-index: 501;
}

.navbar .pesquisa-touch form input {
  position: relative;
  float: right;
  width: 170px;
  height: 40px;
  background-color: #FFFFFF;
  border: none;
  border-radius: 0;
  border-bottom-left-radius: 15px;
  padding-left: 10px;
}

.navbar .pesquisa-touch form input:focus {
  outline: none;
}

.navbar .pesquisa-touch form button {
  position: relative;
  float: right;
  width: 40px;
  height: 40px;
  border: none;
  background-color: #F1F1F1;
  color: #58585B;
  font-size: 16px;
}

.navbar .navbar-collapse {
  border: none;
  width: 100%;
  position: relative;
  z-index: 500;
  padding: 0;
}

.navbar .navbar-nav {
  margin: 0;
  width: 100%;
  border-radius: 0;
  font-size: 13px;
  background-color: #F1F1F1;
}

.navbar .navbar-nav:nth-of-type(2n) {
  background-color: #FFFFFF;
}

.navbar .navbar-nav:nth-of-type(2n) li > a {
  text-transform: uppercase;
  border-bottom: 2px solid #F1F1F1;
}

.navbar .navbar-nav:nth-of-type(2n) li > span {
  text-transform: uppercase;
  border-bottom: none;
}

.navbar .navbar-nav li > a, .navbar .navbar-nav li > span {
  text-transform: uppercase;
  border-bottom: 2px solid #E6E7E8;
}

.navbar .navbar-nav li:last-of-type > a, .navbar .navbar-nav li:last-of-type > span {
  border: none;
}

.navbar .navbar-nav > li {
  padding: 0 15px;
}

.navbar .navbar-nav > li > a, .navbar .navbar-nav > li > span {
  width: 100%;
  color: #58585B;
  text-align: left;
  padding: 8px 0px;
}

.navbar .navbar-nav > li > a:before, .navbar .navbar-nav > li > span:before {
  content: "\f04b";
  font-family: FontAwesome;
  margin-right: 10px;
  font-size: 9px;
  vertical-align: 1px;
  color: #58585B;
}

.navbar .navbar-nav > li > a:hover, .navbar .navbar-nav > li > a:focus, .navbar .navbar-nav > li > span:hover, .navbar .navbar-nav > li > span:focus {
  background-color: transparent;
}

.navbar .navbar-nav > li.open > a, .navbar .navbar-nav > li.open > a:active, .navbar .navbar-nav > li.open > a:hover, .navbar .navbar-nav > li.open > a:focus {
  background-color: transparent;
}

.navbar .navbar-nav > li > ul > li > a, .navbar .navbar-nav > li > ul > li > span {
  color: #58585B;
  padding: 2px 0;
}

.navbar .navbar-nav > li > ul > li > a:before, .navbar .navbar-nav > li > ul > li > span:before {
  content: "\f111";
  font-family: FontAwesome;
  margin-right: 10px;
  font-size: 9px;
  vertical-align: 1px;
  color: #BCD75E;
}

.navbar .navbar-nav > li > ul.dropdown-menu {
  border-radius: 0;
  font-size: 13px;
}

.navbar .navbar-nav > li > ul.dropdown-menu > li.sub_menu {
  border-bottom: 2px solid #F1F1F1;
}

.navbar .navbar-nav > li > ul.dropdown-menu > li > a, .navbar .navbar-nav > li > ul.dropdown-menu > li > span {
  padding-left: 5px;
  padding-top: 2px;
  padding-bottom: 4px;
}

.navbar .navbar-nav > li > ul.dropdown-menu > li > a:focus, .navbar .navbar-nav > li > ul.dropdown-menu > li > a:hover, .navbar .navbar-nav > li > ul.dropdown-menu > li > span:focus, .navbar .navbar-nav > li > ul.dropdown-menu > li > span:hover {
  background-color: transparent;
}

.navbar .navbar-nav > li > ul.dropdown-menu > li > span {
  display: block;
  padding-top: 10px;
  padding-bottom: 2px;
}

.navbar .navbar-nav > li > ul.dropdown-menu > li > ul > li {
  list-style: none;
}

.navbar .navbar-nav > li > ul.dropdown-menu > li > ul > li > a {
  width: 100%;
  text-align: left;
  display: block;
  padding: 5px 0px;
  padding-left: 30px;
  border: none;
}

.navbar .navbar-nav > li > ul.dropdown-menu > li > ul > li > a:before {
  content: "\f04b";
  font-family: FontAwesome;
  margin-right: 10px;
  font-size: 9px;
  vertical-align: 1px;
  color: #BCD75E;
}

.navbar .navbar-nav > li > ul.dropdown-menu > li > ul > li > a:hover, .navbar .navbar-nav > li > ul.dropdown-menu > li > ul > li > a:focus {
  background-color: transparent;
  color: #FBAF3F;
}

#bg-escuro {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 499;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}

@media (min-width: 768px) and (max-width: 991px) {
  .navbar .container {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .navbar {
    min-height: 30px;
    width: 100%;
    height: 30px;
    border: none;
    background-color: transparent;
    z-index: 101;
  }
  .navbar .navbar-collapse {
    padding: 0;
    width: auto;
  }
  .navbar .navbar-nav {
    border-radius: 0 0 10px 10px;
    background-color: #006738 !important;
    -webkit-box-shadow: 0 0 10px 0 #58585B;
    box-shadow: 0 0 10px 0 #58585B;
    padding-bottom: 4px;
    font-size: 14px;
  }
  .navbar .navbar-nav > li {
    padding: 0;
  }
  .navbar .navbar-nav > li > a, .navbar .navbar-nav > li > span {
    width: auto;
    text-align: center;
    padding: 2px 17.5px 3px;
    border-right: 2px solid #FBAF3F;
    border-bottom: none !important;
    color: #FFFFFF;
    background-color: transparent;
  }
  .navbar .navbar-nav > li > a:before, .navbar .navbar-nav > li > span:before {
    content: "";
    margin: 0;
  }
  .navbar .navbar-nav > li:last-child > a, .navbar .navbar-nav > li:last-child > span {
    border-right: none;
  }
  .navbar .navbar-nav li.open > a, .navbar .navbar-nav li.open > a:active, .navbar .navbar-nav li.open > a:hover, .navbar .navbar-nav li.open > a:focus {
    background-color: #006738;
  }
  .navbar .navbar-nav li > a:hover, .navbar .navbar-nav li > a:focus, .navbar .navbar-nav .nav .open > a, .navbar .navbar-nav .nav .open > a:focus, .navbar .navbar-nav .nav .open > a:hover {
    background-color: transparent;
    color: #FBAF3F;
    border-color: #FBAF3F;
  }
  .navbar .navbar-nav > li > ul.dropdown-menu {
    background-color: #006738;
    margin-top: 0px;
    border: none;
    min-width: 130px;
    -webkit-box-shadow: 0 0 10px 0 #58585B;
    box-shadow: 0 0 10px 0 #58585B;
    padding: 4px 10px 10px;
    border-radius: 0 0 10px 10px;
    font-size: 14px;
  }
  .navbar .navbar-nav > li > ul.dropdown-menu > li > a, .navbar .navbar-nav > li > ul.dropdown-menu > li > span {
    padding-top: 7px;
  }
  .navbar .navbar-nav > li > ul.dropdown-menu > li.sub_menu {
    border-bottom: none;
  }
  .navbar .navbar-nav > li > ul.dropdown-menu > li > ul > li > a, .navbar .navbar-nav > li > ul.dropdown-menu > li > ul > li > span {
    color: #FFFFFF;
  }
  .navbar .navbar-nav > li > ul > li:first-of-type > a, .navbar .navbar-nav > li > ul > li:first-of-type > span {
    border-top: 3px solid #FFFFFF;
    padding-top: 12px;
  }
  .navbar .navbar-nav > li > ul > li > a, .navbar .navbar-nav > li > ul > li > span {
    color: #FFFFFF;
    padding: 5px;
    border-bottom: none !important;
  }
}

@media (min-width: 1200px) {
  .navbar .navbar-nav > li > a {
    width: 146px;
    padding: 2px 0 3px;
  }
}

/* FOOTER */
body > footer {
  position: relative;
  background-color: #BCD75E;
  color: #FFFFFF;
}

body > footer .subir {
  position: absolute;
  border: 3px solid #FFFFFF;
  background-color: #BCD75E;
  width: 40px;
  height: 30px;
  font-size: 30px;
  left: 50%;
  margin-left: -20px;
  top: -15px;
  padding-left: 9px;
  border-radius: 6px;
}

body > footer .subir i {
  position: absolute;
  top: -3px;
  color: #FFFFFF;
}

body > footer .subir:hover i {
  color: #58585B;
}

body > footer > .container {
  padding-top: 15px;
  padding-bottom: 15px;
}

body > footer .box-footer {
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 5px;
}

body > footer .box-footer:last-of-type {
  border: none;
}

body > footer .box-footer a {
  color: #F1F1F1;
}

body > footer .box-footer a:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

body > footer .content {
  width: 100%;
  height: 22vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body > footer .titulo {
  color: #FFFFFF;
  margin: 0;
  margin-bottom: 10px;
  position: relative;
  float: left;
  font-size: 1em;
}

body > footer .slide {
  position: relative;
  float: left;
  width: 100%;
  overflow: hidden;
  margin: 0;
}

body > footer .slide .carousel-inner {
  position: relative;
  float: left;
  width: 100%;
}

body > footer .slide .carousel-inner .item {
  width: 100%;
}

body > footer .slide .carousel-inner .item a {
  width: 100%;
}

body > footer .slide .carousel-inner .item a img {
  width: 100%;
}

body > footer .box-texto {
  position: relative;
  float: left;
  width: 100%;
}

body > footer .box-texto address {
  width: 100%;
}

body > footer .box-texto .endereco {
  margin-bottom: 10px;
}

body > footer .box-texto .contato {
  margin-bottom: 0;
}

body > footer .box-texto .contato i {
  font-size: 20px;
  margin-right: 10px;
  line-height: 1.2;
  vertical-align: middle;
}

body > footer .box-sociais {
  position: relative;
  float: left;
  width: 100%;
}

body > footer .box-sociais ul {
  position: relative;
  width: 105px;
  margin: 0 auto;
  float: left;
}

body > footer .box-sociais ul li {
  position: relative;
  float: left;
}

body > footer .box-sociais ul li i {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid #F1F1F1;
  margin-right: 15px;
  font-size: 30px;
  padding-top: 6px;
  text-align: center;
}

body > footer .box-sociais ul li:last-of-type i {
  margin: 0;
}

body > footer .box-sociais ul li span {
  position: relative;
  vertical-align: 5px;
}

body > footer .copy {
  width: 100%;
  background-color: #58585B;
  color: #F1F1F1;
  padding: 12px 0;
  font-size: 0.9em;
}

body > footer .copy a {
  color: #F1F1F1;
  cursor: pointer;
}

body > footer .copy a:hover {
  color: #FFFFFF;
}

body > footer .copy .copy-texto {
  text-align: center;
}

body > footer .copy .copy-logo {
  margin-top: 10px;
  text-align: center;
}

body > footer .copy .copy-logo img {
  margin-top: 10px;
}

@media (min-width: 768px) {
  body > footer .content {
    height: 165px;
  }
  body > footer .box-sociais ul {
    width: 100%;
  }
  body > footer .box-sociais ul li {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
  }
  body > footer .box-sociais ul li:last-of-type i {
    margin-right: 15px;
  }
  body > footer .copy .copy-texto {
    text-align: left;
  }
  body > footer .copy .copy-logo {
    text-align: right;
  }
}

@media (min-width: 992px) {
  body > footer > .container {
    padding-top: 30px;
  }
  body > footer .content {
    height: 100px;
  }
  body > footer .slide .carousel-inner {
    width: 70%;
  }
  body > footer .slide .controles {
    position: relative;
    float: left;
    width: 15%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 94px;
  }
  body > footer .slide .controles i {
    color: #FFFFFF;
    font-size: 20px;
  }
  body > footer .slide .controles a:hover i {
    color: #58585B;
  }
  body > footer .slide .controles.voltar {
    text-align: right;
    padding-right: 10px;
    direction: rtl;
  }
  body > footer .slide .controles.avancar {
    padding-left: 10px;
  }
  body > footer .box-sociais ul li {
    margin-top: 0;
    margin-bottom: 10px;
  }
  body > footer .box-sociais ul li:last-of-type {
    margin-bottom: 0;
  }
  body > footer .copy {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  body > footer .copy .copy-logo img {
    width: 100px;
    height: auto;
  }
}

@media (min-width: 1200px) {
  body > footer .content {
    height: 115px;
  }
  body > footer .slide .controles {
    height: 115px;
  }
}

.aside {
  background-color: #F1F1F1;
  padding-top: 15px;
  padding-bottom: 30px;
  height: 100%;
  -webkit-transition: height 400ms linear;
  -o-transition: height 400ms linear;
  transition: height 400ms linear;
}

.aside hr {
  position: relative;
  float: left;
  width: 100%;
  height: 2px;
  background-color: #E6E7E8;
  color: #E6E7E8;
}

.aside h1 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.aside .aside-noticias .noticia {
  margin-bottom: 5px;
}

.aside .aside-noticias .thumbnail > img, .aside .aside-noticias .thumbnail a > img {
  margin-bottom: 0;
  padding: 0;
  max-height: 60px;
}

.aside .aside-noticias .texto {
  font-size: 0.88em;
  margin-left: -15px;
  padding-top: 4px;
}

.aside .aside-noticias h3 {
  font-size: 1.1em;
  margin: 0;
}

.aside .aside-noticias p, .aside .aside-noticias span {
  font-size: 1em;
  margin: 5px 0 0;
  color: #B2B2B2;
}

.aside .imagem_container {
  margin-bottom: 0;
}

.secao_extra ul ul {
  padding-left: 15px;
}

.secao_extra ul li {
  list-style-type: none;
  padding-top: 10px;
}

.secao_extra ul li:before {
  content: "\f04b";
  font-family: FontAwesome;
  font-size: 0.75em;
  color: #BCD75E;
  padding-right: 10px;
}

.secao_extra ol {
  padding-left: 15px;
}

.secao_extra ol ol {
  padding-left: 30px;
}

.secao_extra ol li {
  padding-top: 10px;
}

.secao_extra img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.secao_extra .telefones table {
  display: table;
}

/* GERAL */
@font-face {
  font-family: "Franklin Gothic Book";
  src: url("../fonts/Franklin Gothic Book.ttf");
}

@font-face {
  font-family: "Franklin Gothic Medium";
  src: url("../fonts/Franklin Gothic Medium.ttf");
}

* {
  margin: 0;
  padding: 0;
}

body, a, a:visited {
  font-family: "Franklin Gothic Book";
  color: #58585B;
}

a:hover, a:active, a:focus {
  text-decoration: none;
  color: #FBAF3F;
}

p {
  margin: 0;
}

table {
  display: inline-block;
  border-radius: 20px;
  border: 2px solid #B2B2B2;
  border-collapse: separate;
  text-align: center;
  max-width: 100%;
  overflow-x: auto;
  margin-top: 10px;
  margin-bottom: 20px;
}

table thead tr td, table thead tr th {
  padding: 5px 15px;
  background-color: #BCD75E;
  color: #FFFFFF;
  text-align: center;
  border-bottom: 2px solid #B2B2B2;
}

table thead tr td:first-of-type, table thead tr th:first-of-type {
  border-top-left-radius: 17px;
}

table thead tr td:last-of-type, table thead tr th:last-of-type {
  border-top-right-radius: 17px;
}

table tbody {
  color: #BBBDC0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

table tbody tr:last-of-type td {
  border-bottom: none;
}

table tbody tr th {
  padding: 5px 15px;
  background-color: #BCD75E;
  color: #FFFFFF;
  text-align: center;
  border-bottom: 2px solid #B2B2B2;
}

table tbody tr th:first-of-type {
  border-top-left-radius: 17px;
}

table tbody tr th:last-of-type {
  border-top-right-radius: 17px;
}

table tbody tr td {
  border-bottom: 2px solid #B2B2B2;
  padding: 5px 15px;
  text-align: left !important;
}

.titulo {
  font-family: "Franklin Gothic Medium";
  color: #006738;
  text-transform: uppercase;
  font-size: 1.1em;
}

hr {
  margin-top: 15px;
  margin-bottom: 15px;
}

.breadcrumb {
  margin-bottom: 30px;
}

.breadcrumb li.active {
  color: #006738;
}

.breadcrumb > li {
  padding-top: 0 !important;
}

article header {
  padding-bottom: 15px;
}

article header .categoria_pagina {
  font-family: "Franklin Gothic Medium";
  color: #006738;
  text-transform: uppercase;
  font-size: 1em;
  margin-top: 0;
  margin-bottom: 5px;
  width: 80%;
}

article header .titulo_pagina {
  font-family: "Franklin Gothic Medium";
  color: #006738;
  text-transform: uppercase;
  font-size: 1.1em;
  margin-top: 0;
  margin-bottom: 5px;
  width: 80%;
}

article header .titulo_pagina a {
  font-family: "Franklin Gothic Medium";
  color: #006738;
  font-size: 1em;
}

article header .sub_titulo_pagina {
  font-size: 0.9em;
  margin-top: 5px;
  margin-bottom: 0;
}

article header hr {
  margin-top: 0;
  margin-bottom: 0;
}

article header .data {
  color: #BBBDC0;
  font-size: 0.9em;
  margin-top: 5px;
}

.acoes_container {
  position: relative;
  float: left;
  width: 100%;
  background-color: #F1F1F1;
  font-size: 1em;
  border-radius: 4px;
  padding: 8px 15px;
  margin-top: 30px;
}

.acoes_container a span {
  text-transform: uppercase;
  margin: 0 15px;
}

.acoes_container .retornar {
  float: left;
}

.acoes_container .compartilhar {
  float: right;
}

ul.lista {
  padding-left: 15px;
}

ul.lista ul {
  padding-left: 15px;
}

ul.lista li {
  list-style-type: none;
  padding-top: 10px;
}

ul.lista li:before {
  content: "\f04b";
  font-family: FontAwesome;
  color: #BCD75E;
  font-size: 0.7em;
  padding-right: 10px;
  vertical-align: 1px;
}

ul.lista li ul li:before {
  content: "\f111";
  font-size: 0.65em;
  line-height: 1.5em;
}

.pagination > li {
  padding: 6px 0;
}

.pagination > li > a {
  padding: 0 12px;
  color: #BBBDC0;
  background-color: transparent;
  border: none;
  border-right: 2px solid #BBBDC0;
}

.pagination > li > a:hover, .pagination > li > a:focus {
  color: #BCD75E;
  background-color: transparent;
}

.pagination > li.active > a {
  color: #BCD75E;
  background-color: transparent;
  border-color: #BBBDC0;
}

.pagination > li.active > a:hover, .pagination > li.active > a:focus {
  color: #BCD75E;
  background-color: transparent;
  border-color: #BBBDC0;
}

.pagination > li:first-of-type > a, .pagination > li:last-of-type > a, .pagination > li:nth-last-of-type(2) > a {
  border: none;
}

.imagem_container {
  width: 100%;
  margin-bottom: 15px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border: 1px solid #F1F1F1;
}

.imagem_container.borda_escura {
  border-color: #E6E7E8;
}

.imagem_container img {
  width: 100%;
  height: auto;
  border-top-right-radius: 20px;
}

.imagem_container .descricao_imagem {
  display: block;
  width: 100%;
  padding: 10px 10px;
  text-align: center;
  background-color: #F1F1F1;
  color: #BBBDC0;
  font-size: 1em;
  border-bottom-left-radius: 20px;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.imagem_container .descricao_imagem.verde {
  background-color: #BCD75E;
  opacity: 0.8;
  color: #FFFFFF;
}

.imagem_container .descricao_imagem.verde a {
  color: #FFFFFF;
}

.imagem_container:hover .descricao_imagem.verde {
  opacity: 1;
}

@media (min-width: 992px) {
  .acoes_container {
    background-color: transparent;
    font-size: 1em;
    border-radius: 0;
    padding: 0;
  }
  .acoes_container hr {
    height: 1px;
    margin-top: 0;
    margin-bottom: 5px;
    border: 0px;
    border-top: 1px solid #E6E7E8;
  }
  .acoes_container a span {
    text-transform: capitalize;
  }
}

.btn-verde {
  color: #FFFFFF;
  background-color: #006738;
  border-color: transparent;
}

.btn-verde:hover {
  color: #FFFFFF;
  background-color: #004425;
}

.font-cinza_m1 {
  color: #B2B2B2;
}

/* Definindo um espaçamento maior entre o container e o aside nas páginas que tem aside */
#altura_aside > .row > .col-xs-12.col-md-8, .aside {
  padding: 30px;
}

/* Gambiarra para deixar Ações sempre no fim*/
#altura_aside > .row > .col-xs-12.col-md-8 {
  height: 100%;
}

#altura_aside > .row > .col-xs-12.col-md-8 > article footer ul {
  margin: 0;
}

.p-30 {
  padding: 30px;
}

.altura-padrao {
  min-height: auto;
}

@media (min-width: 992px) {
  #altura_aside > .row > .col-xs-12.col-md-8 > article,
  .altura-padrao {
    min-height: 500px;
  }
}

.noticia a {
  word-break: break-word;
}

/* iframe full */
.content_iframe {
  margin: 0 auto;
  width: 95%;
  height: 780px;
  margin-bottom: 40px;
}

.content_iframe iframe {
  width: 100%;
  height: 100%;
}

#cse table {
  border: none;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

#cse .gsc-control-cse {
  padding: 0;
}

#cse form.gsc-search-box {
  margin: 0;
}

#cse .gsc-input-box {
  background: transparent;
  border-radius: 4px;
  font-family: "Franklin Gothic Medium" !important;
  height: 37px;
}

#cse input.gsc-input, #cse .gsc-input-box, #cse .gsc-input-box-hover, #cse .gsc-input-box-focus {
  background: transparent !important;
}

#cse table.gsc-search-box td {
  height: 36px;
}

#cse .gsib_a {
  padding: 0px 5px 2px 10px;
  color: #555;
}

#cse .gsst_a .gscb_a {
  color: #006738;
  padding: 0px 5px 2px 6px;
}

#cse .gsst_a .gscb_a:hover {
  color: #004425;
}

#cse .gsc-search-button-v2 {
  height: 36px;
  background: #006738;
  border: 1px solid #004425;
  margin-left: 20px;
}

#cse .gsc-search-button-v2:hover, #cse .gsc-search-button-v2:focus {
  background: #004425;
}

#cse .gsc-orderby-container {
  display: none;
}

#cse .gsc-branding,
#cse .gsc-adBlock,
#cse .gsc-adBlockVertical,
#cse .gcsc-branding {
  display: none;
}

#cse .gsc-above-wrapper-area {
  padding: 0;
  border: none;
}

#cse table tbody tr td {
  padding: 0;
}

#cse .gsc-result-info {
  padding-bottom: 0;
}

#cse .gs-webResult.gs-result a.gs-title:link,
#cse .gs-webResult.gs-result a.gs-title:link b,
#cse .gs-imageResult a.gs-title:link,
#cse .gs-imageResult a.gs-title:link b {
  color: #006738;
}

#cse .gs-result .gs-title, #cse .gs-result .gs-title * {
  color: #006738;
  font-family: "Franklin Gothic Medium" !important;
}

#cse .gs-webResult div.gs-visibleUrl,
#cse .gs-imageResult div.gs-visibleUrl {
  color: #FBAF3F;
  font-family: "Franklin Gothic Medium" !important;
}

#cse .gs-webResult .gs-snippet,
#cse .gs-imageResult .gs-snippet,
#cse .gs-fileFormatType {
  color: #58585B;
  padding-left: 0;
  font-family: "Franklin Gothic Medium" !important;
}

#cse .gsc-webResult.gsc-result,
#cse .gsc-results .gsc-imageResult {
  line-height: 22px;
}

#cse td.gsc-table-cell-thumbnail.gsc-thumbnail {
  display: none;
}

#cse .gsc-cursor-current-page {
  border-right: 2px solid #BBBDC0 !important;
  padding: 1px 12px 1px 3px;
  background: #fff !important;
  font-family: "Franklin Gothic Book" !important;
  color: #BCD75E !important;
}

#cse .gsc-cursor-page {
  color: #BBBDC0;
  border-right: 2px solid #BBBDC0 !important;
  padding: 1px 12px 1px 3px;
  margin-bottom: 10px;
  font-family: "Franklin Gothic Book" !important;
  font-size: 15px;
}

#cse .gsc-results .gsc-cursor-box .gsc-cursor-page:hover {
  border-right: 2px solid #ddd !important;
  text-decoration: none;
  color: #BCD75E;
}

#cse .gsc-results .gsc-cursor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#cse .gsc-cursor .gsc-cursor-page:last-child {
  border-right: none !important;
}

#cse .gsc-cursor .gsc-cursor-page:last-child:hover {
  border-right: none !important;
}

#cse .gs-no-results-result .gs-snippet, #cse .gs-error-result .gs-snippet {
  background: #f2dede !important;
  border: 1px solid #ebccd1 !important;
  text-align: center !important;
  color: #a94442 !important;
  padding: 15px;
  border-radius: 4px;
}

/*
Projeto    : Site CB
Autor      : David Martins
*/
/* GERAL */
section {
  padding: 30px 0;
  background-color: #FFFFFF;
}

section:nth-of-type(2n) {
  background-color: #F1F1F1;
}

section h1.titulo {
  color: #006738;
  font-size: 1.1em;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: "Franklin Gothic";
  position: relative;
  float: left;
}

.ver-mais {
  position: relative;
  float: left;
  width: 100%;
  margin-top: 15px;
  text-align: right;
}

.ver-mais a {
  font-size: 0.9em;
}

/* FIM GERAL */
/* SLIDE PRINCIPAL */
section#slideshow {
  background: url("../img/bg-slideshow.jpg") no-repeat;
  background-size: cover;
  padding: 0;
  position: relative;
}

.slide-principal {
  margin: 0;
  border: none;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
  width: 100%;
}

.slide-principal .carousel, .slide-principal .carousel-inner, .slide-principal .item, .slide-principal .item img {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background-color: transparent;
}

.slide-principal .item {
  padding-bottom: 50%;
  height: 0;
  background-position-x: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  section#slideshow > .container > .row > .col-md-12 {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .slide-principal {
    margin: 30px auto;
    border: 5px solid #BBBDC0;
    border-bottom-left-radius: 40px;
    border-top-right-radius: 40px;
  }
  .slide-principal .carousel, .slide-principal .carousel-inner, .slide-principal .item, .slide-principal .item img {
    border-bottom-left-radius: 35px;
    border-top-right-radius: 35px;
  }
  .slide-principal .item {
    padding-bottom: 36%;
  }
}

@media (min-width: 992px) {
  section#slideshow {
    margin-top: -32px;
  }
}

/* FIM SLIDE PRINCIPAL */
.slide-noticias {
  position: relative;
  float: left;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.slide-noticias .slide {
  position: relative;
  float: left;
  width: 100%;
}

.slide-noticias .slide .carousel-inner:hover .descricao h1.titulo {
  color: #006738;
}

.slide-noticias .carousel, .slide-noticias .carousel-inner, .slide-noticias .item, .slide-noticias .item img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  overflow: hidden;
}

.slide-noticias .descricao {
  position: relative;
  left: 0;
  bottom: 0;
  right: 0;
  height: 60px;
  background-color: #BBBDC0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 4px 12px 0;
  text-align: left;
  text-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slide-noticias .descricao h1.titulo {
  color: #58585B;
  font-size: 14px;
  float: none;
  margin: 0;
  font-weight: bold;
}

.slide-noticias .indicadores {
  position: relative;
  float: left;
  width: 100%;
  height: 37px;
}

.slide-noticias .indicadores ol {
  position: absolute;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  margin-bottom: 0;
  list-style: none;
  text-align: center;
  bottom: 0;
}

.slide-noticias .indicadores ol li {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #58585B;
  margin: 0 5px;
  cursor: pointer;
  border: none;
}

.slide-noticias .indicadores ol li.active {
  background-color: #BCD75E;
}

.slide-noticias .indicadores ol li:not(.active):hover {
  background-color: #FBAF3F;
}

.box-ultimas-noticias {
  margin-top: 30px;
}

.ultimas-noticias {
  border-radius: 20px;
  width: 100%;
  border: 1px solid #F1F1F1;
  position: relative;
  float: left;
  overflow: hidden;
}

.ultimas-noticias .noticia {
  position: relative;
  float: left;
  width: 100%;
  border-bottom: 2px solid #F1F1F1;
}

.ultimas-noticias .noticia:last-of-type {
  border: none;
}

.ultimas-noticias .noticia .data {
  position: relative;
  float: left;
  width: 60px;
  text-align: center;
  background-color: #F1F1F1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90px;
}

.ultimas-noticias .noticia .data span {
  width: 100%;
}

.ultimas-noticias .noticia .texto {
  position: relative;
  float: left;
  /*width: calc(100% - 60px);*/
  /*padding: 15px 0px 15px 20px;*/
  padding: 8px 20px 8px 20px;
  background-color: #FFFFFF;
}

.ultimas-noticias .noticia .texto .titulo {
  font-size: 14px;
  margin: 0;
  padding-bottom: 5px;
  float: none;
}

.ultimas-noticias .noticia .texto .previa {
  width: 100%;
  font-size: 13px;
  color: #939597;
  margin-bottom: 0;
}

.ultimas-noticias .noticia .texto a:hover .titulo, .ultimas-noticias .noticia .texto a:hover .previa {
  color: #FBAF3F;
}

@media (min-width: 768px) {
  .slide-noticias .carousel, .slide-noticias .carousel-inner, .slide-noticias .item, .slide-noticias .item img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
  .slide-noticias .descricao {
    padding: 4px 15px 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .ultimas-noticias .noticia {
    /*&:nth-last-of-type(2) {
            display: none;
        }*/
  }
  .ultimas-noticias .noticia:nth-last-child(2) {
    border: none;
  }
  .ultimas-noticias .noticia:last-of-type {
    display: none;
  }
}

@media (min-width: 992px) {
  .box-ultimas-noticias {
    margin-top: 0;
  }
  .ultimas-noticias .noticia .data {
    height: 119px;
  }
  .slide-noticias .slide {
    width: 88%;
  }
  .slide-noticias .controles {
    width: 6%;
    position: relative;
    float: left;
    font-size: 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 361px;
  }
  .slide-noticias .controles a:focus {
    color: #58585B;
  }
  .slide-noticias .controles.voltar {
    padding-right: 10px;
    text-align: right;
  }
  .slide-noticias .controles.avancar {
    padding-left: 10px;
  }
}

@media (min-width: 1200px) {
  .ultimas-noticias .noticia .data {
    height: 105px;
  }
  .slide-noticias .controles {
    height: 427px;
  }
}

/* EVENTOS */
section#eventos h1.titulo {
  margin-bottom: 7px;
}

.eventos {
  position: relative;
  float: left;
  width: 100%;
}

.eventos .evento {
  width: 100%;
  position: relative;
  float: left;
}

.eventos .evento .calendario {
  width: 50px;
  height: 50px;
  position: relative;
  float: left;
  background: url("../img/calendario.png") no-repeat;
  background-size: 45px 45px;
  background-position: center;
  padding: 20px 18px;
}

.eventos .evento .texto {
  width: calc(100% - 80px);
  position: relative;
  float: left;
  padding: 10px 10px 0;
  font-size: 0.9em;
}

.eventos .evento .texto a:hover .mes, .eventos .evento .texto a:hover .previa-desc {
  color: #FBAF3F;
}

.eventos .evento .texto .mes {
  position: relative;
  float: left;
  width: 100%;
  font-size: 1em;
  margin: 0;
  font-weight: bold;
}

.eventos .evento .texto .previa-desc {
  position: relative;
  float: left;
  width: 100%;
  color: #808284;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

/* FIM EVENTOS */
/* RESERVA DE SALAS */
a.reserva-sala {
  display: block;
  width: 100%;
  height: 210px;
  background-color: #BCD75E;
  color: #FFFFFF;
  font-size: 30px;
  border-radius: 20px;
  padding: 15px 40px;
  text-align: center;
}

a.reserva-sala:hover {
  background-color: #FBAF3F;
  color: #FFFFFF;
}

a.reserva-sala i {
  font-size: 100px;
  color: #006738;
}

/* FIM RESERVA DE SALAS */
/* LINKS MOBILE */
#links-mobile {
  background-color: #F1F1F1;
}

#links-mobile a {
  display: block;
  width: 100%;
  height: 50px;
  font-size: 20px;
  text-align: center;
  color: #FFFFFF;
  background-color: #BCD75E;
  border-radius: 5px;
  margin: 5px 0;
  padding-top: 10px;
}

#links-mobile a i {
  font-size: 25px;
  margin-top: 2px;
}

#links-mobile a i.left {
  position: relative;
  float: left;
  margin-left: 20px;
}

#links-mobile a i.right {
  position: relative;
  float: right;
  margin-right: 20px;
}

/* FIM LINKS MOBILE */
/*
Projeto    : Site CB
Autor      : David Martins
*/
@media (min-width: 992px) {
  .imagem_noticia {
    width: 50%;
    margin-right: 15px;
    position: relative;
    float: left;
  }
  .info-paginacao {
    font-style: italic;
    margin-top: 25px;
  }
  .pagination {
    margin: 10px 0 25px;
  }
}

.eventos_container {
  margin-bottom: 20px;
}

.eventos_container .mes {
  display: block;
  margin-top: 15px;
  color: #BCD75E;
}

.eventos_container ul.lista li a span {
  color: #BBBDC0;
}

article.evento .evento_box {
  position: relative;
  float: left;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
}

article.evento .evento_box .evento_imagem {
  height: 300px;
  padding: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

article.evento .evento_box .evento_imagem a {
  display: block;
  width: 100%;
  height: 100%;
}

article.evento .evento_box .evento_infos {
  height: 100%;
  padding: 15px;
  overflow-y: auto;
  overflow-x: auto;
  background-color: #F1F1F1;
}

article.evento .evento_box .evento_infos ul {
  margin: 0;
}

article.evento .evento_box .evento_infos ul li {
  margin-top: 5px;
  margin-bottom: 5px;
}

article.evento .evento_box .evento_infos ul li:first-of-type {
  margin-top: 0;
}

article.evento .evento_box .evento_infos ul li:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  article.evento .evento_box {
    background-color: #F1F1F1;
    border-radius: 20px;
  }
  article.evento .evento_box .evento_imagem {
    height: 300px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  article.evento .evento_box .evento_infos {
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
  }
  article.evento .evento_box .evento_infos.col-sm-12 {
    background-color: transparent;
  }
}

/*# sourceMappingURL=main.css.map */
