body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
    /*background-color: #234182;*/
  background: #EAEAEA url(../../assets/img/backgroundRio1.svg);
  background-size: 150px 150px;
  font-family: 'Oswald';
}

@media (min-width: 576px) {
  body {
    background-size: 200px 200px;
  }
}

#conteudo {
  width: 100%;
  min-height: calc(100vh - 90px);
  padding-top: 30px;
  padding-bottom: 20px;
  z-index: -1000;
}

@media (min-width: 992px) {
  #conteudo {
    width: 100%;
    min-height: calc(100vh - 123px);
    padding-top: 40px;
    padding-bottom: 20px;
  }
}

#conteudo .container {
  padding: 0px 30px;
}

@media (min-width: 768px) {
  #conteudo .container {
    width: 800px;
  }
}

/* Título h1 */
#conteudo h1 {
  color: black;         /* cor */
  text-transform: uppercase;
  font-size: 32px;        /* Tamanho da fonte */
  text-align: center;
  margin-top: 8px;
}

@media (min-width: 768px) {
  #conteudo h1 {
    font-size: 42px;      /* Tamanho da fonte */
  }
}

/* Titulo h2 */
#conteudo h2 {
  font-size: 20px;        /* Tamanho da fonte */
  font-weight: 300;
  color: white;         /* cor */
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  #conteudo h2 {
    font-size: 28px;      /* Tamanho da fonte */
  }
}

/* titulo h3 */
#conteudo h3 {
  font-size: 17px;        /* Tamanho da fonte */
  font-weight: 200;
  color: white;         /* cor */
  text-align: center;
  /*margin-top: 20px;*/
}

@media (min-width: 768px) {
  #conteudo h3 {
    font-size: 20px;      /* Tamanho da fonte */
  }
}

#conteudo h1, #conteudo h2, #conteudo h3 {
  color: black;
}

#logos img {
  display: block;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 0px;
}

@media (min-width: 768px) {
  #logos img {
    display: block;
    height: 180px;
    margin: 0 auto;
    margin-bottom: 0px;
  }
}

.botoes {
  width: 303px;
  height: 57px;
  color: white;
  background-color: #EF7726;
  border-radius: 57px;
  margin: 0 auto;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s ease-in;
}

@media (min-width: 768px) {
  .botoes {
    width: 303px;
    height: 90px;
    border-radius: 90px;
    margin-top: 15px;
    margin-bottom: 25px;
  }
}

@media (min-width: 992px) {
  .botoes {
    width: 360px;
    height: 115px;
    border-radius: 115px;
  }
}

.botoes:hover {
  color: white;
  background-color: #AB4E3A;
}

.botoes img {
  margin-left: 10px;
  height: 48px;
}

@media (min-width: 768px) {
  .botoes img {
    height: 70px;
  }
}

@media (min-width: 992px) {
  .botoes img {
    height: 80px;
  }
}

.botoes p {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
  margin-left: -20px;
}

@media (min-width: 992px) {
  .botoes p {
    font-size: 24px;
  }
}

#selos img {
  display: block;
  height: 90px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  #selos img {
    height: 120px;
    padding: 0px 15px;
  }
}

.btn.btn-secondary.btn-sm {
}
.btnBusca {
  color: black;
  background-color: #C3C3C3;
}

.quadroLetras {
  padding: 10px;
  margin: 0 auto;
  text-align: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.5);
  border: 0px;
  min-height: 100px;
}

.letras {
  width: 60px;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  margin: 5px;
  color: white;
  border: 0px;
  background-color: #EF7726;
  box-shadow: 0px 2px 2px 2px rgba(0,0,0,0.2);
}

.letras:hover {
	background: #AB4E3A;
}

footer {
  width: 100%;
  height: 90px;
  background-color: rgba(239, 119, 38 ,0.7);
}

@media (min-width: 992px) {
  footer {
    width: 100%;
    height: 123px;
  }
}

#logosRodape p {
  display: block;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  color: white;
}

@media (min-width: 992px) {
  #logosRodape p {
    font-size: 14px;
  }
}

#logosRodape img {
  height: 33px;
  display: block;
  margin: 0 auto;
}

@media (min-width: 992px) {
  #logosRodape img {
    height: 49px;
    display: block;
    padding: 0px 30px;
  }
}

#menuNav {
  position: fixed;
  width: 130px;
  height: 164px;
  left: 100%;
  margin-left: -55px;
  margin-top: 0px;
  z-index: 9999;
}

@media (min-width: 768px) {
  #menuNav {
    margin-left: -130px;
  }
}

.botaoNav {
  height: 50px;
  font-size: 16px;
  color: white !important;
  font-weight: 500;
  background-color: #EF7726;
  text-transform: uppercase;
  border-radius: 10px 0px 0px 10px;
  margin-bottom: 7px;
  text-align: left;
  padding-left: 20px;
  border: 0px;
  transition: all 0.2s ease-in;
}

.botaoNav:first-child {
  padding-left: 15px;
}

.botaoNav:hover {
  color: white;
  background-color: #AB4E3A;
}

.botaoNav i {
  margin-right: 25px;
  font-size: 22px;
}

@media (min-width: 768px) {
  .botaoNav i {
    margin-right: 8px;
  }
}

.campoEntrada {
  margin-bottom: 30px;
}

.autorEscolhido {
  width: 100%;
  margin: 0 auto;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(170, 87, 46,0.73);
  border: 1px solid #ffffff;
  color: #666;
  margin-bottom: 30px;
}

.autor {
  display: block;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: white;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .autor {
    font-size: 24px;
  }
}

.titulo {
  display: block;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: white;
}

.rolagem {
  overflow: auto;
  max-height: 300px;
  padding: 5px;
}

.rolagem::-webkit-scrollbar {
  width: 8px;
  background-color: rgba(245,245,245,0.5);
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
}

.rolagem::-webkit-scrollbar-thumb {
  border-radius: 8px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #EF7726!important;
}

.listaOpcoes {
  cursor: pointer;
  background: rgba(255,255,255,0.55);
}

.listaOpcoes a {
  text-decoration: none;
  color: #000000;
}

.listaOpcoes td {
  padding-left: 30px;
}

.erroAutor {
  font-size: 14px;
  font-weight: 400;
  color: rgb(234,104,10);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}

