/**********************************************************************/
/****************************** Fontes *******************************/
/********************************************************************/

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url(../fonts/light.woff) format('woff');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed Regular'), local('RobotoCondensed-Regular'), url(../fonts/regular.woff) format('woff');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url(../fonts/bold.woff) format('woff');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Noto Sans'), local('NotoSans'), url(../fonts/sans.woff) format('woff');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Noto Sans Bold'), local('NotoSans-Bold'), url(../fonts/sans_bold.woff) format('woff');
}

/**********************************************************************/
/************************** ELEMENTOS COMUNS *************************/
/********************************************************************/

body {
  color: #555555;
  font-family: 'Noto Sans';
  src: local('Noto Sans'), local('NotoSans'), url(../fonts/sans.woff) format('woff');
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  
}

.site-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Espaço lateral em telas pequenas */
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  color: white;
  font-family: 'Roboto Condensed';
}

p {
  line-height: 1.6;
  font-size: 16px;
}
a:focus {
  outline: none;
}
a {
  color: #a6051a;
}
.btn:focus, .btn:active:focus, .btn.active:focus {
  outline: none;
}
.centralizar{
  text-align:center;
}
.vis-hidden {
  visibility: hidden !important;
}
a {
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}
h2.sectionTitle {
  color: white;
  font-size: 50px;
  margin-top: 0;
  text-align: center;
  font-weight: 700;
  margin-bottom: 50px;
}

h3.sectionSubTitle {
  color: white;
  font-size: 35px;
  margin-top: 0;
  text-align: center;
  font-weight: 500;
  margin-bottom: 50px;
}
.altWrap {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background-color: #F5F5F5;
}

/**********************************************************************/
/***************************** NAVBAR ********************************/
/********************************************************************/

.navbar {
  margin-bottom: 0;
}
.logo{
  margin-top:2px;
}
.navbar a {
  background-color: inherit;
}
.navbar-inverse {
  background: #252526;
  border: 0 none;
  box-shadow: 0px 0px 10px #3F3D3D;
    -webkit-box-shadow: 0px 0px 10px #3F3D3D;
    -moz-box-shadow: 0px 0px 10px #3F3D3D;
}
.navbar-brand {
  line-height: 1;
  height: 40px;
  margin-top: 13px;
  margin-bottom: 26px;
  padding: 0;
  width: 100%;
  font-size: 40px;
  letter-spacing: -2px;
  font-weight: 700;
  background-color:white;
}
.navbar-inverse .navbar-brand {
  color: #a6051a;
}
.navbar-inverse .navbar-brand .fa-stack {
  font-size: 28px;
}
.navbar-inverse .navbar-brand .title {
  color: #888;
}
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
  margin-left: 0;
}
.navbar-nav {
  float: right;
}
.navbar-inverse .navbar-nav > li > a {
  font-family: 'Roboto Condensed';
  color: white;
  display: block;
  font-size: 14px;
  font-weight: 400;
  padding: 30px 8px;
  text-shadow: none;
  transition: background-color 0.5s;
}
.navbar .nav > li > a:hover{
  border-top-style: none;
  background-color: #a6051a;
  color: black;
}
.navbar .nav > li > a.subscribe, .subscribe {
  border-top-style: none;
  background-color: #a6051a ;
  color: white;
  font-weight: bolder;
  font-size: 1.3em;
}

.btn-subscribe {
  font-size: 2em;
  padding: 15px 50px;
  margin-top: 30px;
  white-space: normal;
}

.btn-subscribe:hover {
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.6);
        -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.6);
  color: white;
}

.navbar .nav > li > a.destaca{
  color: #12a19b;
}

.navbar .nav > li > a.destaca:hover{
  border-top-style: none;
  background-color: #a6051a;
  color: white;
}

.navbar-inverse .navbar-toggle {
  background: #a6051a;
  border: 0 none;
  margin: 19px 15px 19px 0;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background: #222222;
}


/**********************************************************************/
/************************** SLIDER ***********************************/
/********************************************************************/

#Matrix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  display: block;
  background: black;
}

.conteudo-sobre-fundo {
    position: relative;
    width: 100%;
    height: 100vh; /* ou outra altura desejada para o slider */
    overflow: hidden;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-central {
  position: absolute; /* <-- POSICIONADO RELATIVO A .conteudo-sobre-fundo */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center;
}

.logo-central img {
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  display: block !important
}
  
/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .conteudo-sobre-fundo,
  .rslides li {
    height: 80vh;
  }

  .logo-central img {
    max-width: 200px;
  }
}

.slidersection {
  margin-top: 69px; /* Foswiki */
  position: relative; /* necessário para sobrepor ao canvas */
  z-index: 1;
}
.rslides {
  padding-top:200px;
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
.rslides li {
  -webkit-backface-visibility: hidden;
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 1;
}
.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}
.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
}
.events {
  list-style: none;
}
.callbacks_container {
  position: relative;
  width: 100%;
  margin-top:80px;
}
.callbacks {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.callbacks img {
  display: block;
  position: relative;
  z-index: 1;
  height: auto;
  width: 100%;
  border: 0;
}
.callbacks_nav {
  position: absolute;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  top: 52%;
  left: 0;
  opacity: 0.7;
  z-index: 3;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  height: 61px;
  width: 38px;
  background: transparent url("../assets/extras/themes.gif") no-repeat left top;
  margin-top: -45px;
}
.callbacks_nav:active {
  opacity: 1.0;
}
.callbacks_nav.next {
  left: auto;
  background-position: right top;
  right: 0;
}

/**********************************************************************/
/************************** YT VIDEO *********************************/
/********************************************************************/

/* Adicione este CSS ao seu arquivo de estilos (por exemplo, style.css) */
.container-yt-video {
  padding-top: 60px;
  padding-bottom: 50px;
  margin: 60px auto 0 auto;
}

.video-centralizado {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.video-responsive {
    overflow: hidden;
    /* Para esconder qualquer transbordamento */
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio (9/16 = 0.5625) */
    position: relative;
    height: 0;
    
}

.video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 25px;
}


/**********************************************************************/
/*************************** EVENTO **********************************/
/********************************************************************/

#evento-back {
  padding-top: 60px;
  padding-bottom: 50px;
  margin: 60px auto 0 auto;

}

#evento {
  padding-top: 60px;
  padding-bottom: 60px;
  width: 100%;
  margin: 60px auto 0 auto;
  background-color: rgba(37,37,38, 0.9);
  border-radius: 25px;
  max-width: 1100px;     /* Limita largura em telas grandes */
  padding: 60px 20px;    /* Espaço lateral para telas pequenas */

}

.evento-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px; /* Aumentado de 30px para 45px */
    color: white;
}

.evento-bloco {
  width: 100%;
  max-width: 800px;
  text-align: center;
}

.justify{
  text-align:justify;
}

.edicoes {
  text-align: center;
}


.ajustar_imagem{
  width:100%;
  max-width:720px;
}

#transmissao {
  padding-top: 60px;
  padding-bottom: 50px;
}

#noticias {
  padding-bottom: 50px;
}

/**********************************************************************/
/************************ CRONOGRAMA *********************************/
/********************************************************************/
#programacao {
  padding-top: 60px;
  padding-bottom: 60px;
  width: 100%;
  max-width: 1100px;     /* Limita largura em telas grandes */
  padding: 60px 20px;    /* Espaço lateral para telas pequenas */
  margin: 60px auto 0 auto;
  box-sizing: border-box;
  border-radius: 25px;
  background-color: rgba(37,37,38, 0.9);
}

.programa table {
  width: 100%;
  overflow: hidden;
  background: #fefefe;
  -moz-border-radius: 5px;
  /* FF1+ */
  -webkit-border-radius: 5px;
  /* Saf3-4 */
  border-radius: 5px;
  font-weight: 400;
  border: 1px solid #ddd;
  box-shadow: 0px 0px 4px #aaa;
  -webkit-box-shadow: 0px 0px 4px #aaa;
  -moz-box-shadow: 0px 0px 4px #aaa;
  -o-box-shadow: 0px 0px 4px #aaa;
}
.programa table ul li {
  list-style: none;
}
.programa thead tr th {
  text-align:center;
}
.programa tbody tr td {
  text-align:center;
}
.programa tbody tr td {
  border-top:1px solid #e0e0e0;
  border-right:1px solid #e0e0e0;
}
.programa tr.grad td {
  background:#a6051a;
  color: #fff;
}
.programa tbody tr td {
  background: #fefefe;
}
.programa tbody tr.odd-row td {
  background:#f6f6f6;
  color:#252526
}
.programa thead tr th {
  background: #252526; 
  color:#fff;
  padding: 15px;
}
.programa tbody tr td.border-r{
  border-right:0px;
  padding: 10px;
}
.programa tr td{
  padding:10px;
}
.programa tr th{
  padding:10px;
}

.programa a{
  color:  white;
}
.programa b{
  color: inherit;}

.programa c{
  color:  white; 
}


.nav-tabs li.active a{
  background-color: #a6051a !important; 
}
.nav-tabs li a:hover{
  background-color: #d8001d;
}
.icon-youtube{
  color: #a6051a;
  font-size: 30px;
}
.icon-youtube:hover{
  color: #af1818;
  font-size: 35px;
}

/**********************************************************************/
/*************************** EXTRAS **********************************/
/********************************************************************/
#extras {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 60px auto 0 auto;
  background-color: rgba(37, 37, 38, 0.9);
  border-radius: 25px;
  color: white;
}

#extras h1{
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Roboto Condensed';
}

.extras-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

/* Bloco genérico para minicurso, CTF e Submissão */
.bloco-extra {
  flex: 1 1 calc(33.33% - 40px);
  max-width: 350px;
  background-color: #3F3D3D;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column; /* permite empurrar o botão para baixo */
  text-align: center;
}


.bloco-extra .conteudo {
  flex: 1;                /* ocupa todo espaço disponível */
  display: flex;
  flex-direction: column; /* empilha títulos e descrição */
  justify-content: flex-start; /* força alinhamento no topo */
}

/* Botão sempre alinhado na base */
.bloco-extra .btn-inscricao {
  margin-top: auto; /* joga o botão para a base do bloco */
}

/* Título e subtítulo */
.sectionTitle {
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Roboto Condensed';
}

.sectionSubtitle {
  font-size: 1.3em;
  margin-bottom: 15px;
  font-family: 'Roboto Condensed';
}

/* Texto do parágrafo */
.justify {
  text-align: justify;
  margin-bottom: 20px;
}

/* Estilo dos botões (mantido) */
.btn-inscricao {
  background-color: #a6051a;
  color: #fff;
  border: none;
  border-radius: 4px;
  height: 50px;
  width: 210px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.4s;
  text-decoration: none;
  font-size: 2em;
}

.btn-inscricao:hover {
  background-color: #cc0000;
  color: #fefefe;
  text-decoration: none;
}

/* Classe antiga que ainda pode ser útil para títulos */
.h4-cursos {
  padding-left: 0px;
  padding-bottom: 20px;
  text-align: left;
  color: #444;
  font-size: 24px;
}


/**********************************************************************/
/************************ PALESTRANTES *******************************/
/********************************************************************/

/* Container principal */
#palestrantes {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba(37, 37, 38, 0.9);
  border-radius: 25px;
  max-width: 1100px;
  margin: 60px auto 0;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* ATENÇÃO: classe igual ao HTML */
.container-palestrantes {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  color: white;
}

.palestrantes-header {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

/* Grid – 100% no mobile, cresce com segurança */
.palestrantes-grid {
  display: grid;
  /* nunca exige mais que a largura disponível */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(16px, 4vw, 32px);
  width: 100%;
}

/* Card */
.slide {
  background-color: #3F3D3D;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px;
  color: white;
  text-align: center;
  box-sizing: border-box;
  max-width: 340px;   /* <<< limite de largura */
  margin: 0 auto;
}

.palestrante-img {
  border-radius: 50%;
  width: 100%;
  max-width: 140px; /* menor no mobile */
  height: auto;
  margin-bottom: 15px;
  display: block;
}

.palestrante-nome {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 0 10px;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.palestrante-descricao {

  text-align: justify;
  line-height: 1.4;
  margin: 0;
  overflow-wrap: anywhere;
  font-family: 'Roboto Condensed';
  font-size: 17px;

}

/* Breakpoints */
@media (min-width: 600px) {
  .palestrantes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .palestrante-img { max-width: 150px; }
}


@media (min-width: 992px) {
.palestrantes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center; /* centraliza os cards */
  gap: 30px;
}

  .palestrante-img { max-width: 160px; }

  /* Se realmente quiser "forçar" posições, limite isso ao desktop */
  .palestrante-align-center { grid-column: 2 / span 1; }
  .palestrante-align-edges:first-child { grid-column: 1 / span 1; }
  .palestrante-align-edges:last-child  { grid-column: 3 / span 1; }
}



/**********************************************************************/
/************************ FOTOS ************************************/
/********************************************************************/

#fotos {
  padding-top: 50px;
  padding-bottom: 60px;
}

.teste {
  position: relative;
  margin: 0 auto;
  padding: 0;
  *zoom: 1;
  width:800px;
}
.teste img {
  max-width: 100%;
  width:800px;
  display: block;
}

.bxslider{
  margin-left:-40px;
  margin-top:0px;
}

.teste .bx-viewport {
  -moz-box-shadow: 0 0 5px #ccc;
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
  border:  5px solid #fff;
  left: -5px;
  background: #fff;
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
      -ms-transform: translatez(0);
      -o-transform: translatez(0);
      transform: translatez(0);
}

.teste .bx-pager,
.teste .bx-controls-auto {
  position: absolute;
  width: 100%;
}

.teste .bx-wrapper .bx-controls-direction a {
  top: 0%;
  margin-top: -40px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
}

/**********************************************************************/
/************************ CONTATO ************************************/
/********************************************************************/
#contato {
  padding: 60px 20px 100px;
  max-width: 1100px;
  margin: 60px auto 0 auto;
  background-color: rgba(37,37,38, 0.9);
  border-radius: 25px;
  border: none; /* Remove qualquer borda branca */
}

.contato-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.contato-header {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  width: 100%;
}

.contato-item {
  text-align: center;
}

.contato-item i {
  color: white;
  margin-bottom: 10px;
}

.contato-texto {
  color: white;
  font-size: 0.95em;
}

.contato-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.contato-link:hover i {
  color: #a6051a;
}

/**********************************************************************/
/*********************** ORGANIZAÃ‡ÃƒO *********************************/
/********************************************************************/

#organizacao {
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 1100px;     /* Limita largura em telas grandes */
  padding: 60px 20px;    /* Espaço lateral para telas pequenas */
  margin: 0 auto;
  background-color: rgba(37,37,38, 0.9);

}

#organizacao ul{
  list-style-type:none;
}

/**********************************************************************/
/*********************** PARCEIROS *********************************/
/********************************************************************/


#service {
  padding-top: 60px;
  padding-bottom: 100px;
  max-width: 1100px;
  margin: 60px auto 0 auto;
  background-color: rgba(37,37,38, 0.9);
  border-radius: 25px;
}

.parceiros-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.sectionTitle {
  font-size: 2em;
  margin-bottom: 40px;
}

.parceiros-bloco {
  margin-top: 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  
}

.parceiros-bloco a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.parceiro-subtitulo {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.parceiros-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
  gap: 20px;
  justify-items: center; /* centraliza cada logo */
  margin-top: 1rem;
  padding: 0 40px; /* <-- espaço lateral interno */
  
}

.logo {
  max-height: 80px;
  height: auto;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.logo-ufba {
  max-height: 100px;
}

#logo-pop {
  max-width: 290px;
  vertical-align: middle; 
}

/* Container dos grupos */
.grupo-parceiros {
  margin-bottom: 2rem;
  text-align: center;
}
/* Logos */
.parceiro-logo {
  max-width: 120px;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  margin-bottom: 50px;
}

/* Responsividade */
@media (max-width: 1024px) {
  .parceiros-logos {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (max-width: 768px) {
  .parceiros-logos {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}

@media (max-width: 480px) {
  .parceiros-logos {
    grid-template-columns: 1fr;
  }
}


/**********************************************************************/
/************************* FOOTER ************************************/
/********************************************************************/
footer {
  background: #444;
  padding: 20px 0;
}
footer p {
  color: #ddd;
  font-weight: 300;
  margin: 0;
  font-size: 16px;
}
footer p a{
  outline:none;
}

/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0;
  *zoom: 1;
}
.bx-wrapper img {
  max-width: 100%;
  display: block;
}

/** THEME
===================================*/
.bx-wrapper .bx-viewport {
  -moz-box-shadow: 0 0 5px #ccc;
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
  border:  5px solid #fff;
  left: -5px;
  background: #fff;
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0);
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -50px;
  width: 100%;
}
/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}
.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
    -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
  border-radius: 5px;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #000;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: 10px;
  background: url(../assets/extras/controls.png) no-repeat 0 -32px;
}
.bx-wrapper .bx-next {
  right: 18px;
  background: url(../assets/extras/controls.png) no-repeat -43px -32px;
}
.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 500;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}
/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: calc('#666'\9);
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}
.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}

/**********************************************************************/
/****************** MEDIA QUERIES ************************************/
/********************************************************************/
@media(max-width:1200px){
  .jumbotron .mobile {
    margin-left: -164px;
  }
}
@media(max-width:991px){
  .slidersection {
    margin-top: 60px; /* Foswiki */
  }
  .logo{
    margin-top:7px;
  }
  .logo img{
    width:120px;
  }
  .navbar-brand {
    margin-top: 1px;
  }
  .navbar-collapse {
    float: right;
  }
  .navbar-inverse .navbar-nav > li > a {
    font-size: 14px;
    padding: 25px 6px;
  }
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    font-size: 28px;
    float: left;
    margin: 4px 0;
    width: auto;
  }
  .navbar-inverse .navbar-brand .fa-stack {
    font-size: 22px;
  }
  .navbar-nav{
    text-align:center;
    float:none;
  }
  .bx-wrapper {
    width:620px;
  }
  .callbacks_container {
    margin-top:70px;
  }
  .teste {
    width:100%;
  }
}
@media (max-width: 767px) {
  .navbar-collapse {
    float: none;
  }
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    float: left;
    margin: 4px 0 15px 15px;
  }
  .navbar-inverse .navbar-nav > li > a {
    font-size: 14px;
    padding: 9px 15px;
  }
  .cent{
    text-align:center;
    margin-left:-35px;
  }
  .org{
    margin-bottom:-1px;
  }
}
@media (max-width: 650px) {
  .bx-wrapper {
    max-width:300px;
    width:300px;
  }
  .teste .bx-wrapper{
    width:100%;
    max-width:100%;
  }
}
@media (max-width: 479px) {
  .programa table {
    font-size:11px;
  }
}

#drop > a:focus,
#drop > a:link {
  background:none;
  color:white;
}
#drop > a:focus {
  background:#a6051a;
  color:black;
}
#drop > a:active{
  background:#a6051a;
  color:black;
}
#drop > a:hover{
  background:#a6051a;
  color:black;
}
.parceiro-titulo {
  font-size: 300%;
  font-weight: bold;
}
.parceiro-subtitulo {
  font-size: 200%;
}
.copyright-area {
  font-size: 1em;
}

/********************************************************************/
/****************** SIZE CLASSES ************************************/
/********************************************************************/

.height-30 {
  height: 300px;
}
.height-14 {
  height: 140px;
}
.height-10 {
  height: 100px;
}
.width-33 {
  width: 330px;
}
.width-29 {
  width: 290px;
}
.width-28 {
  width: 280px;
}
.width-26 {
  width: 260px;
}
.width-24 {
  width: 240px;
}
.width-16 {
  width: 160px;
}
.width-14 {
  width: 140px;
}
.width-13 {
  width: 130px;
}


/********************************************************************/
/****************** BUTTON INSCRIÇÃO ********************************/
/********************************************************************/

#inscricao a {
  max-height: 50%;
  color: #fff;
  background: #a6051a;
  transition: all 0.3s ease;
}

#inscricao:hover a {
  max-height: 50%;
  color: #000;
  background: #a6051a;
}



/********************************************************************/
/********************* SUBMISSAO.HTML  ********************************/
/********************************************************************/

#pdf-holder {
  padding-top: 60px;
  padding-bottom: 60px;
  width: 100%;
  margin: 120px auto 0 auto;
  background-color: rgba(37,37,38, 0.9);
  border-radius: 25px;
  max-width: 1100px;     /* Limita largura em telas grandes */
  padding: 60px 20px;    /* Espaço lateral para telas pequenas */
}

#pdf-holder h1 {

  color: white;
  text-align: center;
  font-family: 'Roboto Condensed';
  line-height: 1.6;
  font-size: 50px;
  margin-top: 0;
  font-weight: 700;
  margin-bottom: 50px;
}


#null {
  color: rgba(0, 0, 0, 0);
}