@charset "UTF-8";
html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

strong, b {
  font-weight: bold;
}

em {
  font-style: italic;
}

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/******************************
		VARIÁVEIS
******************************/
/******************************
		ESTRUTURA
******************************/
html, body {
  width: 100%;
  height: 100%;
  font-family: 'Raleway', 'Calibri', 'Lucida Grande', sans-serif;
  position: relative;
  font-size: 15px;
  line-height: 1.4;
  background-color: #28190f;
  font-weight: lighter;
  color: #c8b491;
}

a {
  color: inherit;
  text-decoration: none;
}
a a:visited {
  text-decoration: underline;
}

.section {
  width: 100%;
  height: auto;
}
.section .container {
  width: 96%;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 600px) {
  .section .container {
    width: 100%; 
  }
}

.hide {
  display: none !important;
}

.desk {
  display: block !important;
}
@media screen and (max-width: 600px) {
  .desk {
    display: none !important;
  }
}

.resp {
  display: none !important;
}
@media screen and (max-width: 600px) {
  .resp {
    display: block !important;
  }
}

.break {
  width: 100%;
  height: 0;
  display: inline-block;
}

p {
  margin-bottom: 1em;
  line-height: 1.5;
}

.txt-english {
  color: #82551e;
  font-weight: 500;
}

h2 {
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
  color: #c8b491;
  font-family: 'Playfair Display', serif;
}

h3 {
  color: #c8b491;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
}

.saiba-mais {
  color: #c8b491;
  text-transform: uppercase;
  font-size: 13px;
}

/*
==========================================================================
		HEADER
========================================================================== 
*/
.section-header {
  background-color: #28190f;
}
.section-header .container {
  padding-top: 0px;
  padding-bottom: 0px;
  text-align: justify;
  border-bottom: 5px solid #82551e;
}
.section-header .bloco-logo {
  width: 100%;
  height: 320px;
  background: #28190f url("../img/fundo-home.jpg") center center no-repeat;
  background-size: cover;
  padding-top: 20px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: start;
}
@media screen and (max-width: 600px) {
  .section-header .bloco-logo {
    height: 220px;
    margin-bottom: 0;
  }
  .section-header .bloco-logo img {
    width: 300px;
    height: auto;
  }
}
.section-header .bloco-logo:before {
  width: 800px;
  height: 100%;
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  background: transparent url("../img/fundo-logo.png") center center repeat-x;
  background-size: auto 100%;
}
.section-header .bloco-logo-small img {
  width: 220px;
  height: auto;
}
.section-header .menu-nav {
  display: block;
  width: 100%;
  height: 50px;
  vertical-align: bottom;
  text-align: right;
  color: #000;
  padding-right: 20px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#412300+0,82551e+100 */
  background: #412300;
  /* Old browsers */
  background: -moz-linear-gradient(left, #412300 0%, #82551e 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #412300 0%, #82551e 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #412300 0%, #82551e 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#412300', endColorstr='#82551e',GradientType=1 );
  /* IE6-9 */
}
@media screen and (max-width: 600px) {
  .section-header .menu-nav {
    text-align: center;
    font-size: 0.7em;
  }
}
.section-header .menu-nav li {
  display: inline-block;
  margin-left: 20px;
  height: 50px;
  line-height: 50px;
  text-transform: uppercase;
  font-size: 17px;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .section-header .menu-nav li {
    font-size: 13px;
    margin-right: 1em;
    margin-left: 0;
  }
}
.section-header a {
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.section-header a.ativo, .section-header a:hover {
  color: #f0af23;
}

/*
==========================================================================
		ESTA SEMANA
========================================================================== 
*/
.section-home-estasemana{
  margin-bottom: 20px;
}

.section-home-estasemana .container {
  background-color: #1a0d06;
  padding: 20px;
}
.section-home-estasemana h2 {
  margin-bottom: 30px;
  line-height: 1;
  color: #c8b491;
}
.section-home-estasemana .estasemana-bloco {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.section-home-estasemana .estasemana-bloco::after {
  clear: both;
  content: "";
  display: table;
}
.section-home-estasemana .estasemana-descricao {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 65.88078%;
  border-top: 1px solid #c8b491;
  padding-top: 30px;
}
.section-home-estasemana .estasemana-descricao:last-child {
  margin-right: 0;
}
@media screen and (max-width: 600px) {
  .section-home-estasemana .estasemana-descricao {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .section-home-estasemana .estasemana-descricao:last-child {
    margin-right: 0;
  }
}
.section-home-estasemana .estasemana-descricao h3 {
  margin-bottom: 1em;
}
.section-home-estasemana .estasemana-descricao p {
  margin-bottom: 1em;
}
.section-home-estasemana .estasemana-descricao em {
  color: #80531d;
}
.section-home-estasemana .estasemana-player {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
  margin-right: 0;
}
.section-home-estasemana .estasemana-player:last-child {
  margin-right: 0;
}
@media screen and (max-width: 600px) {
  .section-home-estasemana .estasemana-player {
    margin-top: 30px;
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .section-home-estasemana .estasemana-player:last-child {
    margin-right: 0;
  }
}
.section-home-estasemana .estasemana-player .player-imagem {
  width: 100%;
  height: auto;
}

.estasemana-meta {
  margin-bottom: 1em;
}
.estasemana-meta span {
  display: block;
  font-size: 0.9em;
}
.estasemana-meta small {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  color: #f0af23;
}

.player-zuim {
  background-color: #000;
  padding: 12px;
  margin-bottom: 20px;
}
.player-zuim .player-titulo {
  padding-top: 20px;
  padding-bottom: 20px;
}
.player-zuim .player-titulo h3 {
  font-family: 'Raleway', 'Calibri', 'Lucida Grande', sans-serif;
  text-transform: uppercase;
  font-weight: 200;
  font-size: 15px;
  width: 60%;
  margin: 0 auto;
  text-align: center;
}
.player-zuim .player-titulo h4 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  color: #c8b491;
}
.player-zuim .player-range {
  width: 100%;
  height: 20px;
  background-color: #82551e;
  margin-bottom: 20px;
}

.player-baixar {
  display: inline-block;
  width: 49%;
  text-align: left;
  text-transform: uppercase;
  font-size: 13px;
}

.player-share {
  display: inline-block;
  width: 49%;
  text-align: right;
  text-transform: uppercase;
  font-size: 13px;
  vertical-align: top;
}
.player-share .lista-redessociais {
  text-align: right;
  margin-top: -5px;
}
.player-share .lista-redessociais li {
  display: inline-block;
  margin-left: 5px;
}
.player-share .link-social {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: #ff0022;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.player-share .link-face {
  background-color: #3b5998;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.player-share .link-face:hover {
  color: #3b5998;
  background-color: #fff;
}
.player-share .link-twitter {
  background-color: #00aced;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.player-share .link-twitter:hover {
  color: #00aced;
  background-color: #fff;
}

.module-maisrecente .ucd_item {
  display: none;
}

.section-home-estasemana .module-maisrecente > h3 {
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
  color: #c8b491;
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
  line-height: 1;
}

/*INSERÇÕES SINGLE POST*/
#estasemana-texto img {
  display: none;
}

#estasemana-texto .onepixelout {
  display: none;
}

.section-home-estasemana .estasemana-bloco-single .estasemana-descricao {
  border-top: none;
  padding-top: 0;
}

.section-home-estasemana .estasemana-bloco-single .single-titulo {
  font-size: 26px;
}

.section-home-estasemana .estasemana-bloco-single .single-data {
  font-size: 14px;
  color: #fff;
}

.section-home-estasemana .estasemana-bloco-single .single-categ {
  color: #82551e;
  font-family: 'Raleway', 'Calibri', 'Lucida Grande', sans-serif;
  text-transform: uppercase;
  font-size: 16px;
}

.estasemana-full-conteudo img {
  display: none;
}

.estasemana-full-conteudo .onepixelout {
  display: none;
}

.section-home-estasemana-playlist strong {
  text-transform: uppercase;
  color: #fff;
}

.section-home-estasemana-playlist p {
  margin-bottom: 5px;
}

.section-home-estasemana-playlist a {
  display: block;
  margin-top: 20px;
  color: #fff;
}

/* FIM DAS INSERÇÕES SINGLE POST */
/*
==========================================================================
		PROGRAMAS ANTERIORES
========================================================================== 
*/
.module-anteriores {
  display: none;
}

.section-home-anteriores {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section-home-anteriores .container {
  background-color: #000;
  padding: 20px;
}
.section-home-anteriores .anteriores-titulo {
  /*font-weight: 800;*/
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lista-home-anteriores {
  text-align: justify;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .lista-home-anteriores {
    text-align: center;
  }
}

.single-home-anterior {
  display: inline-block;
  width: 30%;
  height: 0;
  padding-bottom: 20%;
  position: relative;
  overflow: hidden;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
}
.single-home-anterior:last-child {
  margin-right: 0;
}
.single-home-anterior:nth-child(3n) {
  margin-right: 0;
}
.single-home-anterior:nth-child(3n+1) {
  clear: left;
}
@media screen and (max-width: 600px) {
  .single-home-anterior {
    width: 96%;
    padding-bottom: 46%;
    margin-bottom: 30px;
  }
}
.single-home-anterior a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.single-home-anterior .texto-home-anterior {
  text-align: center;
  width: 60%;
  color: #c8b491;
  font-size: 13px;
}
.single-home-anterior .texto-home-anterior h3 {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  font-family: 'Raleway', 'Calibri', 'Lucida Grande', sans-serif;
  margin-bottom: 20px;
}
.single-home-anterior .fundo-single {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: #1a0d06 url("../img/thumb-teste.png") center center no-repeat;
  background-size: cover;
  -webkit-transition: all 0.9s;
  -moz-transition: all 0.9s;
  transition: all 0.9s;
}
.single-home-anterior:hover .fundo-single {
  -webkit-filter: blur(2px) brightness(0.4);
  filter: blur(2px) brightness(0.4);
}

.sidebar-programas {
  padding-top: 20px;
}
.sidebar-programas h3 {
  margin-bottom: 20px;
}

.sidebar-programas .single-home-anterior {
  width: 100%;
  padding-bottom: 45%;
  margin-bottom: 30px;
}
.sidebar-programas .single-home-anterior .texto-home-anterior {
  text-align: center;
  width: 80%;
  color: #f0af23;
}
.sidebar-programas .single-home-anterior .texto-home-anterior h3 {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 5px;
}

.section-temas-footer {
  padding-top: 00px;
  padding-bottom: 40px;
}
.section-temas-footer .container {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  background-color: #1a0d06;
  padding: 20px;
}
.section-temas-footer .container::after {
  clear: both;
  content: "";
  display: table;
}

.footer-temas {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 65.88078%;
  position: relative;
}
.footer-temas:last-child {
  margin-right: 0;
}
@media screen and (max-width: 600px) {
  .footer-temas {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .footer-temas:last-child {
    margin-right: 0;
  }
}
.footer-temas h3 {
  text-transform: uppercase;
  /*font-weight: bold;*/
}
.footer-temas .lista-temas {
  text-align: justify;
  margin-top: 30px;
  margin-bottom: 10px;
}
.footer-temas .lista-temas li {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 45px;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .footer-temas .lista-temas li {
    width: 100%;
  }
}
.footer-temas .lista-temas .break {
  height: 0;
  margin-bottom: 0;
}
.footer-temas .tema-link {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent url("../img/ico-1.png") center left no-repeat;
  background-size: auto 45px;
  padding-left: 100px;
  line-height: 45px;
  text-transform: uppercase;
  color: #c8b491;
  font-size: 13px;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.footer-temas .tema-link:hover {
  color: #f0af23;
}
.footer-temas .tema-radio {
  background: #3c1d11 url("../img/radio5.jpg") center left no-repeat;
  background-size: auto 100%;
}
.footer-temas .tema-leitura {
  background: #584312 url("../img/leitura_musicada3.jpg") center left no-repeat;
  background-size: auto 100%;
}
.footer-temas .tema-instrumental {
  background: #51453b url("../img/cordas1.jpg") center left no-repeat;
  background-size: auto 100%;
}
.footer-temas .tema-entrevistas {
  background: #5d421a url("../img/vozes2.jpg") center left no-repeat;
  background-size: auto 100%;
}

.footer-redessociais {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
  padding-top: 60px;
  position: relative;
}
.footer-redessociais:last-child {
  margin-right: 0;
}
@media screen and (max-width: 600px) {
  .footer-redessociais {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
    padding-top: 20px;
  }
  .footer-redessociais:last-child {
    margin-right: 0;
  }
}
.footer-redessociais .busca-chave {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 600px) {
  .footer-redessociais .busca-chave {
    position: static;
    top: auto;
    right: auto;
    margin-top: 0;
    margin-bottom: 20px;
  }
}
.footer-redessociais .busca-chave h4 {
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
}
.footer-redessociais .busca-chave .busca-input {
  display: inline-block;
}
.footer-redessociais .busca-chave input[type="text"] {
  display: inline-block;
  width: 180px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #777;
  color: #fff;
  font-family: 'Raleway', 'Calibri', 'Lucida Grande', sans-serif;
}
.footer-redessociais .busca-chave input[type="submit"] {
  display: inline-block;
  border: none;
  background-color: transparent;
  color: #c8b491;
  line-height: 32px;
  font-size: 24px;
  position: relative;
  width: 40px;
  background: transparent url("../img/bsearch.png") center center no-repeat;
  background-size: contain;
  position: relative;
  top: 13px;
}
.footer-redessociais .lista-redessociais {
  float: left;
  display: block;
  margin-right: 7.42297%;
  width: 46.28851%;
  text-align: justify;
}
.footer-redessociais .lista-redessociais:last-child {
  margin-right: 0;
}
.footer-redessociais .lista-redessociais li {
  display: inline-block;
  vertical-align: top;
  width: 45%;
  height: 0;
  padding-bottom: 42%;
  margin-bottom: 16px;
  position: relative;
}
.footer-redessociais .lista-redessociais .break {
  height: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.footer-redessociais .link-social {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #ff0022;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  font-size: 32px;
  text-align: center;
  color: #fff;
}
.footer-redessociais .link-piaui {
  float: left;
  display: block;
  margin-right: 7.42297%;
  width: 46.28851%;
  margin-right: 0;
  display: block;
}
.footer-redessociais .link-piaui:last-child {
  margin-right: 0;
}
.footer-redessociais .link-piaui div {
  width: 100%;
  height: 0;
  padding-bottom: 95%;
  background: #fff url("../img/piaui.png") center center no-repeat;
  background-size: cover;
}
.footer-redessociais .link-face {
  background-color: #3b5998;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.footer-redessociais .link-face:hover {
  color: #3b5998;
  background-color: #fff;
}
.footer-redessociais .link-twitter {
  background-color: #00aced;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.footer-redessociais .link-twitter:hover {
  color: #00aced;
  background-color: #fff;
}
.footer-redessociais .link-youtube {
  background-color: #bb0000;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.footer-redessociais .link-youtube:hover {
  color: #bb0000;
  background-color: #fff;
}
.footer-redessociais .link-rss {
  background-color: #ff6600;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.footer-redessociais .link-rss:hover {
  color: #ff6600;
  background-color: #fff;
}

.section-footer {
  background-color: #28190f;
  text-align: center;
  font-size: 12px;
}

/*
==========================================================================
		SOBRE
========================================================================== 
*/
.section-sobre-zuim {
  background-color: #28190f;
  padding-bottom: 0px;
  padding-top: 0px;
}
.section-sobre-zuim .container {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.section-sobre-zuim .container::after {
  clear: both;
  content: "";
  display: table;
}
.section-sobre-zuim h1 {
  font-family: 'Playfair Display', serif;
  color: #c8b491;
  font-weight: 500;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-sobre-zuim .sobre-portugues {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
  background-color: #1a0d06;
  padding: 15px;
}
.section-sobre-zuim .sobre-portugues:last-child {
  margin-right: 0;
}
@media screen and (max-width: 600px) {
  .section-sobre-zuim .sobre-portugues {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .section-sobre-zuim .sobre-portugues:last-child {
    margin-right: 0;
  }
}
.section-sobre-zuim .sobre-portugues strong {
  font-weight: 300;
  color: #f0af23;
  text-transform: uppercase;
}
.section-sobre-zuim .sobre-ingles {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
  margin-right: 0;
  background-color: #1a0d06;
  padding: 15px;
  padding-top: 80px;
}
.section-sobre-zuim .sobre-ingles:last-child {
  margin-right: 0;
}
@media screen and (max-width: 600px) {
  .section-sobre-zuim .sobre-ingles {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
    padding-top: 20px;
  }
  .section-sobre-zuim .sobre-ingles:last-child {
    margin-right: 0;
  }
}
.section-sobre-zuim .sobre-ingles strong {
  font-weight: 300;
  text-transform: uppercase;
}

.section-faq {
  background-color: #28190f;
  padding-bottom: 20px;
}
.section-faq .container {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  background-color: #1f1209;
  padding: 15px;
}
.section-faq .container::after {
  clear: both;
  content: "";
  display: table;
}

.lista-perguntas .ucd_item {
  display: inline-block;
  width: 48%;
  overflow: hidden;
  vertical-align: top;
}

@media screen and (max-width: 600px) {
  .lista-perguntas .ucd_item {
    display: inline-block;
    width: 98%;
    overflow: hidden;
    vertical-align: top;
    margin-bottom: 15px  !important;
  }
}

.lista-perguntas .ucd_item .js-ativa-pergunta, .lista-perguntas .ucd_item .ucd_title {
  display: block;
  font-size: 13px;
  color: #f0af23;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}
.lista-perguntas .ucd_item .bloco-resposta, .lista-perguntas .ucd_item .ucd_introtext {
  padding-top: 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.lista-perguntas .ucd_item .bloco-resposta p, .lista-perguntas .ucd_item .ucd_introtext p {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}
.lista-perguntas .ucd_item.ativo .bloco-resposta, .lista-perguntas .ucd_item.ativo .ucd_introtext {
  opacity: 1;
  padding-top: 10px;
  max-height: 800px;
}
.lista-perguntas .ucd_item.ativo .bloco-resposta p, .lista-perguntas .ucd_item.ativo .ucd_introtext p {
  margin-bottom: 1em;
}

ul.ucd_list li.row1 {
  background-color: transparent !important;
}

/*
==========================================================================
		ACERVO
========================================================================== 
*/
.section-acervo {
  background-color: #28190f;
  padding-bottom: 40px;
}
.section-acervo .container {
  background-color: #1a0d06;
  padding: 20px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.section-acervo .container::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 600px) {
  .section-acervo .container {
    border-bottom: none;
  }
}
.section-acervo h1 {
  font-family: 'Playfair Display', serif;
  color: #f0af23;
  font-weight: 500;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.section-acervo .titulo-acervo {
  color: #c8b491;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.section-acervo small {
  display: block;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.section-acervo .coluna-1, .section-acervo .coluna-2, .section-acervo .coluna-3 {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
}
.section-acervo .coluna-1:last-child, .section-acervo .coluna-2:last-child, .section-acervo .coluna-3:last-child {
  margin-right: 0;
}
@media screen and (max-width: 600px) {
  .section-acervo .coluna-1, .section-acervo .coluna-2, .section-acervo .coluna-3 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .section-acervo .coluna-1:last-child, .section-acervo .coluna-2:last-child, .section-acervo .coluna-3:last-child {
    margin-right: 0;
  }
}
.section-acervo .coluna-3 {
  margin-right: 0;
}

.link-programa{
  display: none;
	width: 100%;
	height: 70px;
	line-height: 70px;
	text-align: center;
	background-color: #000;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.link-programa:hover a{
  color: #f0af23;
}

.coluna-programa {
  background-color: #000;
  margin-bottom: 20px;
  font-size: 12px;
  min-height: 1100px;
}
.coluna-programa img {
  width: 100%;
  height: auto;
}
.coluna-programa .coluna-padding {
  padding: 15px;
}
.coluna-programa h4 {
  text-transform: uppercase;
  color: #c8b491;
  margin-bottom: 10px;
}
.coluna-programa .lista-programas {
  margin-bottom: 20px;
}
.coluna-programa li {
  margin-bottom: 10px;
  color: #fff;
}
.coluna-programa li a {
  margin-bottom: 15px;
  display: block;
  line-height: 1.3;
  font-size: 13px;
}
.coluna-programa a {
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.coluna-programa a:hover {
  color: #f0af23;
}
.coluna-programa .saiba-mais {
  font-weight: bold;
  color: #fff;
}

.section-programa-single {
  background-color: #28190f;
}

.categoria-lista-programas li {
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.categoria-lista-programas li a:hover {
  color: #f0af23;
}

/*
==========================================================================
		BUSCA
========================================================================== 
*/
.busca-explore {
  height: 50px;
  line-height: 50px;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 600px) {
  .busca-explore {
    margin-top: 20px;
    position: static;
    text-align: right;
    margin-bottom: 20px;
  }
}
.busca-explore .busca-input {
  display: inline-block;
}
.busca-explore input[type="text"] {
  width: 220px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #c8b491;
  font-family: 'Raleway', 'Calibri', 'Lucida Grande', sans-serif;
  color: #c8b491;
  display: inline-block;
  line-height: 32px;
  text-transform: uppercase;
  text-align: right;
}
.busca-explore input[type="submit"] {
  display: inline-block;
  border: none;
  background-color: transparent;
  color: #c8b491;
  line-height: 32px;
  font-size: 24px;
  position: relative;
  width: 40px;
  background: transparent url("../img/bsearch.png") center center no-repeat;
  background-size: contain;
  position: relative;
  top: 13px;
}

.section-busca {
  background-color: #28190f;
  padding-bottom: 40px;
}

.section-busca .container {
  background-color: #1a0d06;
  padding: 20px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section-busca .container::after {
  clear: both;
  content: "";
  display: table;
}

.titulo-busca {
  font-family: 'Raleway', 'Calibri', 'Lucida Grande', sans-serif;
}

.qtderesults-busca {
  font-family: 'Raleway', 'Calibri', 'Lucida Grande', sans-serif;
  font-size: 16px;
  margin-bottom: 30px;
}

.resultado-single {
  margin-bottom: 20px;
}

.resultado-single a {
  font-weight: bold;
  color: #f0af23;
}

.resultado-single a:hover {
  opacity: 0.8;
}

.resultado-single .citacao {
  font-style: italic;
  font-size: 14px;
}

.sct-invisivel{
  opacity: 0;
}

/* FORMULÁRIO */

#mc_embed_signup{
  background-color: transparent  !important;
}

#mc_embed_signup input {
  background-color: transparent;
  border: none  !important;
  border-bottom: 1px solid #fff !important;
  color: #c8b491 !important;
  -webkit-border-radius: 0px  !important;
  -moz-border-radius: 0px  !important;
  border-radius: 0px  !important;
}

#mc_embed_signup textarea{
  width: 100%;
  height: 100px;
  border: 1px solid #fff;
  color: #c8b491 !important;
  background-color: transparent;
  -webkit-border-radius: 0px  !important;
  -moz-border-radius: 0px  !important;
  border-radius: 0px  !important;
}

#mc_embed_signup .button {
    clear: both;
    background-color: #c8b491  !important;
    border: 0 none;
    border-radius: 4px;
    transition: all 0.23s ease-in-out 0s;
    color: #FFFFFF  !important;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: normal;
    height: 32px;
    line-height: 32px;
    margin: 0 5px 10px 0;
    padding: 0 22px;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    white-space: nowrap;
    width: auto;
    border-bottom: none  !important;
}

#mc_embed_signup #mce-success-response {
    color: #c8b491  !important;
}

.componentheading{
  display: none;
}