body {
  /* background-image: radial-gradient(circle, rgb(0, 0, 0),rgb(4, 3, 34), rgb(0, 0, 0)); */
  overflow-x: hidden;
  background-color: rgb(2, 12, 31);

}

.sumir {
  display: none;
}

section {
  color: rgb(255, 255, 255);
  margin-bottom: 25px;

  h1 {
    padding-top: 7vh;
    font-family: 'Technor', sans-serif;
    font-size: 3em;
    margin-bottom:3%;
  }

  h2{
    font-family: 'Technor', sans-serif;
    font-size: 2em;
    font-weight: bold;
  }
}

.faq-header{
  font-size: 20px;
}

.faq-content {
  /* background: linear-gradient(157deg, rgb(9, 43, 62) 0%, rgba(1,31,41,1) 100%); */
  width: 70vw;
  height: 70vh;
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0 1vw;
} 

.faq-content::-webkit-scrollbar {  /* barra de rolagem */ 
  background: rgba(88, 2, 2, 0);
  width: 10px;
}
 
.faq-content::-webkit-scrollbar-button { /* setinhas q movimentam a barrinha pra cima/baixo */
  display: none;
}

.faq-content::-webkit-scrollbar-thumb { /* botao da rolagem */  
  background: rgba(255, 255, 255, 0.44);
  border-radius: 50px;
}

.faq-question {
  padding: 20px 0;
  border-bottom: 1px solid #ffffff4a;
  position: relative;
  color: white !important;
}

.panel-title {
  font-size: 24px;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 10px 10px 0 48px;
  display: block;
  cursor: pointer;
}

.panel-content {
  color: #bebebe;
  font-size: 20px;
  padding: 0px 14px;
  margin: 0 40px;
  height: 0;
  overflow: hidden;
  z-index: 1;
  position: relative;
  opacity: 0;
  -webkit-transition: .4s ease;
  -moz-transition: .4s ease;
  -o-transition: .4s ease;
  transition: .4s ease;
}

.panel:checked ~ .panel-content{
  height: auto;
  opacity: 1;
  padding: 14px;
  font-family:'Century Gothic Paneuropean', sans-serif;
}

.plus {
  position: absolute;
  margin-left: 20px;
  margin-top: 4px;
  z-index: 5;
  font-size: 42px;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .2s ease;
  -moz-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
}

.panel:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.panel {
  display: none;
}

a{
  color: #bebebe;

}


/* ---------------------------------------------------------------------------------------- */
/* MEDIA QUERIES */
/* dispositivos moveis */
@media (min-width:320px) and (max-width:480px) {
  .faq-content {
    width: 87vw;
  } 

  .panel-title {
    width: auto;
    padding: 0px 10px 0 60px;
    font-size: 16px;

  }

  .panel-content {
    width: auto;
    font-size: 14px;
    margin: 0 45px;
  }

  label {
    font-size: 18px !important;
  }
}
/* iPads, tablets */    
@media (min-width:481px) and (max-width:768px) {
  .faq-content {
    width: 80vw;
  } 

  .panel-title {
    width: auto;
    padding: 0px 10px 0 60px;
    font-size: 18px;

  }

  .panel-content {
    width: auto;
    font-size: 14px;
    margin: 0 45px;
  }

  label {
    font-size: 18px !important;
  }
}

/* telas pequenas, laptops */
@media (min-width: 769px) and (max-width:1024px) {
   
}

/* desktops, telas grandes */
@media (min-width: 1025px) and (max-width:1200px) {
   
}

/* telas muito grandes, TVs */
@media (min-width: 1201px) {

}