/*------------ Vídeo index ----------------------*/
/* Container para imagem e texto */
.video_container {
    position: relative;
    text-align: center;
    height: 100%;
    overflow: hidden;
}

.video_index{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.titulo_index{
    position: absolute;
    top: calc(500px/6);
    left: auto;
    max-width: 80%;

    font-size: 50px;
    text-align: left;
    color: white;
    text-shadow: -1px 1px 2px rgba(46,46,46,0.4);
}

/* Gambiarra pra segurar o texto diferente nos vários tamanhos de tela */

@media (min-width: 768px){

    .titulo_index{
        max-width: 40%;
        font-size: 70px;
    }

    .video_index{
        width: 80%;
        height: auto;
        object-fit: cover;
    }

}

/* --fim da gambiarra-- */


.marginzero{
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
}

.paddingzero{
    padding: 0;
}
/*------------PROCESSO SELETIVO------------*/


.botoes-ps{
    margin-top: 30px;
    margin-bottom: 30px;
}

.botoes-ps div{
    margin-bottom: 10px;
}

.botoes-ps h4{
    margin: 0;
}

.txt-destaque-ps{
    margin-bottom: 45px;
}

.txt-destaque-ps h3{
    color: var(--azul-aero);
    font-weight: 700;
    font-size: 42px;
    margin-top: 0;
    margin-bottom: 15px;
}

.txt-ps{
    font-size: 18px;
    text-align: justify;
}

.margin-bottom-ps{
    margin-bottom: 60px;
}

.txt-ps .email-link{
    margin-top: 20px;
    margin-bottom: 40px;
}

.txt-ps img{
    margin-top: 30px;
    margin-bottom: 40px;
}

.txt-ps ul{
    list-style: none;
    margin-bottom: 40px;
}

.txt-ps ul li::before{
    content: "\25A0";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: var(--azul-aero); /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1.5em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
}

.txt-ps ul li{
    margin: 16px 0;
}

.email-link svg{
    width: 26px;
    margin-right: 22px;
    fill: #0871BA;
    vertical-align: bottom;
    padding-bottom: 3px;
}

.email-link a:hover svg{
    fill: white;
}

.ps-dica h4{
    background-color: var(--azul-aero);
    color: white;
    padding: 1em;
    margin-right: 1em;
    text-align: center;
    float: left;
}

.ps-dica{
    margin-top: 1em;
    margin-bottom: 3em;
}

.margin-top-0{
    margin-top: 0;
}

.margin-bottom-ps .titulo_h4{
    margin-top: 22px;
}


.email-link .titulo_h4{
    margin-top: 0;
    margin-bottom: 0;
}

.email-link a{
    display: inline-block;
    padding: 8px;
    width: 100%;
    text-align: center;
    border: 4px solid var(--azul-aero);
    margin-top: 22px;
    font-size: 22px;
    color: var(--azul-aero);
    background-color: var(--background);
    transition: 0.2s;
}

.email-link a:hover{
    color: white;
    background-color: var(--azul-aero);
}

.email-link p{
  text-align: justify;
}

/*-- mobile --*/
@media (max-width: 767px){

    .email-link{
        margin-bottom: 4em;
    }

}

/*------------Linha Proc. Selet. Página Inicial------------*/
.linha-ps{
    background-color: var(--azul-aero);
    padding: 1em;
    margin-top: 2em;
}

.linha-ps h3{
    margin: 0;
    font-weight: 700;
    text-align: center;
    color: white;
}

.linha-ps span{
    font-weight: 400;
}


/*GAMBIARRA DO LINK PRO CURSOS*/
.correcao_caixa_outros_cursos{
    line-height: 367%;
}

@media (max-width: 768px){

    .correcao_caixa_outros_cursos{
        line-height: 320%;
    }

}