@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@500&family=Poppins:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');


:root{
--red_1:#990003;
--red_3:#e50005;

--grey_1: #404040;
--grey_2: #68676c;
--grey_3: #737373;
--grey_4: #c1c1c1;

--normal_1: #fff; 
--normal_2: #000;


--font_principal:'Montserrat', sans-serif;
--font_2:'Poppins', sans-serif;
--font_3: Arial, Helvetica, sans-serif;
--font_4: 'Open Sans', sans-serif;
--font_5:'Lato', sans-serif;
}

*,html{
margin: 0;
padding: 0;
}

*, *:after, *:before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

body{
margin:0;
overflow-x:hidden !important;
font-family: var(--font_principal);
}


li{
list-style: none;
}

a{text-decoration: none !important}

span{
font-weight: 600;
}

a.active_link{
background-color: var(--grey_3);
color: #f0efef;
}
  
.menu_lateral{
z-index: 10!important;
position:sticky;
}

div.container_princ {
margin: auto;
max-width: 1440px;
height: auto;
}
/*************** Slides ****************/

.container_pincipal{
height: auto;
position: relative;
}
    
.container_pincipal > .title_alunos {
top: 4.4rem;
position: fixed;
}  

div.title_docs{
background: url(../img/12.faq_pq.jpg) no-repeat;
background-size: cover;
font-size: 600;
position: relative;
display: flex;
justify-content: left;
align-items: center;
padding-left: .5rem;
margin: 5.5rem 0rem 0;
height: 30vh;
width:100%;
}

div.title_docs h2{
display:block;
text-transform:none;
text-align: left;
margin: 0 0 0 .5rem;
padding:0;
letter-spacing:0.8px ;
font-size: 20px;
width: 65%;
font-weight: 600;
text-shadow: none;
padding-left: 0rem;
color: var(--grey_3);
}

div.container_pincipal > div.links{
top: 1rem;
left: 1rem;
color: var(--red_3);
position: absolute;
}
  
div.container_pincipal> div.links > p >a{
font-weight: 400;
letter-spacing: 0.6px;
font-size: 12px;
text-shadow: none;
color: var(--red_3);
}

div.container_pincipal> div.links > p > a:hover{
text-decoration: underline !important;
}

div.content{
margin: 0;
padding: 0;
}
  
div.content{
width: 100%;
text-align: justify;
padding: 0px 15px;
margin: 2.5rem 0 4rem;
color: var(--grey_1);
line-height: 1.6rem;
font-size: 12px;
font-family: var(--font_principal);
}
  
div.box_text{
width: 100%;
background-color: #f7f7f7; 
box-shadow:  2px 2px 6px #9f9f9f,
-2px -2px 5px #e9e9e9;
border-radius: 10px;
margin: 0 auto; 
padding: 20px 10px;
}

div.box_text h2{
text-align: center;
font-size: 20px;
padding: 1rem 0;
letter-spacing: 0.6px;
color: var(--red_3);
}


div.content > div.box_text > p{
letter-spacing: 0.5px;
line-height: 1.7rem;
font-size: 11px;
margin-top: 10px;
}

div.content > p > a::after{
content: "🔗";
}


div.content > div.box_text h3{
background-image: linear-gradient(to right, var(--grey_3), transparent);
color: var(--normal_1);
padding: 7px 5px;
text-shadow: 1px 1px 1px #4b4b4b;
font-size: 16px;
letter-spacing: 0.6px;
border-radius: 10px 0 0 0;
margin: 2rem 0 3.5rem;
text-align: left;
}
  
div.content > div.box_text h3::before{
content: "📝\00a0\00a0";
color: #fff;
}

div.ingressantes,
div.veteranos{
width: 100%;
height: auto;
display: flex;
flex-direction: column;
}

div.ingressantes > div.ing_text,
div.veteranos > div.vet_text{
width: 100%;
height:auto;
}

div.ingressantes > div.ing_imagem,
div.veteranos > div.vet_imagemt{
width: 100%;
height: auto;
}



/*****************************
****** FAQ *****
******************************/
.containerFluid {
width: 100%;
margin: 0 auto;
overflow-x:auto;
height: 80vh;
margin-bottom: 2rem;
}
  
.containerFluid::-webkit-scrollbar{
width: 4px;
background: rgba(0, 0, 0, 0.1);
}

.accordion {
width: 100%;
padding: 0 2px 0 0;
background-color: #b94547;
border: 2px solid rgba(128, 128, 128, 0.1);
cursor: pointer;
border-radius: 10px;
display: flex;
margin: 5px 0;
align-items: center;
text-align: left;
transition: background 0.6s;
}
  
.accordion:hover{
background-color: var(--red_1);
}

.accordion > h5 {
font-size: 11px;
margin: 0;
line-height: 1.6rem;
padding: 3px 0 0 0;
font-weight: normal;
color: var(--normal_1);
}

.accordion .icon {
margin: 0 5px 0 0;
padding: 15px;
background: #a5a5a5 url(../img/addition.png) no-repeat center center;
background-size: .6rem .6rem;
border-radius: 50%;
float: left;
transition: all 0.5s ease-in;
}

.active {
background-color: var(--red_1);
color: #fff;
}
  
.active .icon {
background:   #fff url(../img/toggle-bg.png) no-repeat center center;
background-size: .8rem 3px;
}

.panel {
width: 100%;
padding: 0 15px;
border-left: 1px solid #ad3436;
margin: 5px auto;
overflow: hidden;
max-height: 0;
transition: all 0.3s ease-in;
}

.panel_end{
margin-bottom: 2rem;
}

.panel > p{
color: var(--grey_3);
line-height: 1.6rem;
letter-spacing: 0.6px;
margin-top: 15px;
font-size: 12px;
}

.panel > p > a,
.panel > p > span > a,
.panel > ul > li > a,
.panel > ol > li > a{
  color: var(--red_3);
}

.panel > p > a:hover,
.panel > p > span > a:hover,
.panel > ul > li > a:hover,
.panel > ol > li > a:hover{
text-decoration: underline !important;
}
.panel i{
font-size: 16px;
}


.panel .end{
margin-bottom: 2rem;
}

.eleven{
  margin-top: 1.5rem !important;
  background-color: var(--normal_1) ;
  padding: 10px 5px;
  -webkit-box-shadow: 10px 8px 14px -6px rgba(0,0,0,0.75);
  -moz-box-shadow: 10px 8px 14px -6px rgba(0,0,0,0.75);
  box-shadow: 10px 8px 14px -6px rgba(0,0,0,0.75);
}

.panel .star{
margin:2rem 0 ;
}

.panel > ul
.panel > ol{
padding:0  30px;
}

.panel > ol > li{
list-style-type:decimal;
list-style-position: inside;
font-size: 13px;
line-height: 1.7rem;
letter-spacing: 0.6px;
margin-top: 10px;
}
  
.panel > ul > li{
list-style-type: '\1F5F8\00a0\00a0';
list-style-position: inside;
font-size: 13px;
line-height: 1.7rem;
letter-spacing: 0.6px;
margin-top: 10px;
}
      
@media (min-width: 530px){
div.title_docs h2{
width: 50%;
font-size: 26px;
padding-bottom: 0;
}
 
div.title_docs > .border-shape {
background:var(--red_3) repeat scroll 0 0;
display:block;
position:absolute;
height:4px;
width: 70px;
top: 11rem;
left: .8rem;
}}
  
@media (min-width: 630px){
div.title_docs h2{
font-size: 30px;
}}
  
  
@media (min-width: 650px){
.container_pincipal{
height: auto;
position: relative;
}
    
.container_pincipal > .title_alunos {
top: 4.4rem;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
position: fixed;
} 

.container_pincipal > .title_alunos > h5{
text-align: center !important;
width: 100%;
}

div.title_docs{
justify-content: left;
align-items: center;
padding-left: 2rem;
background: url(../img/12.faq.jpg) no-repeat center;
background-size: 100% 100%;
background-color: rgba(170, 168, 168, 0.1);
margin: 6rem 0rem 0;
height: 50vh;
width: 100%;
max-height: 250px;
} 

div.title_docs h2{
margin: 2rem 10px 0 ;
font-size: 30px;
width: 45%;
}

div.title_docs > .border-shape {
height:4px;
width: 100px;
top: 12.5rem;
left: 2.5rem;
} 
 
div.container_pincipal> div.links{
top: 1rem;
left: 1.5rem;
font-size: 14px;
}

div.box_text{
width: 98%;
margin: 3rem auto; 
padding: 20px 30px 80px;
}

div.content > div.box_text > p{
letter-spacing: 0.6px;
line-height: 1.7rem;
font-size: 15px;
margin-top: 30px;
text-indent: 2rem;
}

div.content > div.box_text h2{
font-size: 23px;
}
    

div.content > div.box_text h3{
padding: 7px 5px;
font-size: 20px;
margin: 4rem 0;
}

div.ingressantes > div.ing_imagem{
height: 25vh;
max-height: 150px;
background-size: 8rem 6rem; 
}

.accordion {
position: relative;
margin: 5px auto;
width: 85%;}

.panel {
width: 95%;
}}

@media (min-width: 850px){
div.ingressantes,
div.veteranos{
display: flex;
flex-direction: row;
}

div.ingressantes > div.ing_text,
div.veteranos > div.vet_text{
width: 75%;
height: auto;
}

div.ingressantes > div.ing_imagem,
div.veteranos > div.vet_imagem{
width: 30%;
margin: 0;
padding: 0;
height: auto;
}

div.ingressantes > div.ing_imagem{
position: relative;
left: -1rem;
background: url(../img/faq_par.jpg) no-repeat center left;
background-size: 17rem 25rem;
height: auto;
max-height: 800px;
}

div.veteranos > div.vet_imagem{
position: relative;
background: url(../img/faq_impar.jpg) no-repeat center center;
background-size: 17rem 27rem;
margin: 0 2rem;
left: 0;
}

.containerFluid {
width: 95%;
}  

.accordion {
width: 100%;
margin: 8px auto;
padding: 0 0px;
}

.accordion > h5 {
font-size: 15.5px;
margin: 0;
padding: 3px 0 0 0;
}

.panel > p{
margin-top: 15px;
font-size: 14px;
}
}

@media (min-width: 1000px){
.menu_lateral{
top:4.8rem;
}

.title_alunos > h5 {
font-size: 30px;
padding-right: 18rem;
}

div.title_docs h2{
margin: 2rem 10px 0 ;
font-size: 30px;
width: 80%;
}

div.title_docs > .border-shape {
height:4px;
width: 100px;
top: 11rem;
left: 2.5rem;
} } 

      
@media (min-width: 1044px){
div.container_pincipal > .title_alunos > h5{
padding-right: 5rem;
} 
div.container_pincipal > div.links > p >a{
font-size: 14px;
}
}










  
  