#main-vagas{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 150px 0;
}

#info-inicial-pag-vagas{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    width: 80%;

    > div:nth-child(1){
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 70%;
    }
}

#titulo-main-vagas{
    font-size: 42px;
    font-family: 'Technor', sans-serif;
}

.button-vagas{
    padding: 10px 15px;
    background-color: rgb(006, 145, 192);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: 'Century Gothic Paneuropean', sans-serif;
    font-size: 16px;
    transition: transform 0.3s ease;
    border: none;
    color: #fff;
    max-width: 200px;
    width: 100%;
}

.button-vagas:hover{
    cursor: pointer;
    transform: scale(1.07);
}

.vaga{
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: #062644 2px solid;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(3,25,46,0.14002097420999648) 35%, rgba(39,81,121,0.46775206664697133) 100%);
    width: 80%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.vaga:hover{
    cursor: pointer;
}

.vaga-resumo{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.vaga-info{
    max-height: 9999px;
    overflow: hidden;
    transition: all .6s;
}

.hidden{
    max-height: 0;
}

.vaga-info-texto h3{
    margin: 20px 0 10px 0;
}

.vaga-info-texto > p, .vaga-info-texto ul{
    line-height: 1.6em;
    color: #dedede;
}

.vaga-info-texto ul{
    margin-left: 20px;
}

.vaga-cta{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.vaga-info-castle{
    margin-top: 20px;
    padding: 20px;
    background-color: #062644;
    border-radius: 15px;

    h3{
        margin-top: 0;
    }
}

.dados-no-card-vagas{
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.dados-no-card-vagas img{
    width: 20px;
}

.dados-no-card-vagas p{
    font-size: 15px;
    color: #0691c0;
}

.info-rapidas-vaga{
    display: flex;
    flex-direction: row;
    column-gap: 30px;
    row-gap: 15px;
    flex-wrap: wrap;
}

.primeira-desc-vaga{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#desc-banco-talentos{
    gap: 0;
    justify-content: center;
}

.form-vagas{
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;

    .form-vagas-info{
        font-size: 16px;
        width: 100%;
        max-width: 500px;
        color: #dedede;
    }

    form{
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        gap: 20px;

        label{
            display: flex;
            flex-direction: column;
            gap: 5px;
            font-size: 16px;
            color: #dedede;

            input{
                box-sizing: border-box;
                border: 1px solid #0b001a ;
                border-radius: 10px;
                height: 40px;
                padding-left: 10px;
            }

            input[type="file"]{
                display: none;
            }

            input:focus-visible{
                outline: none;
                border: 2px solid #0691c0;
            }
            
            textarea{
                box-sizing: border-box;
                border: 1px solid #0b001a ;
                border-radius: 10px;
                height: 100px;
                padding-left: 0px;
            }

        }

        #label-file{
            padding: 10px 15px;
            border: 2px solid #0691c0;
            font-size: 14px;
            color: #0691c0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Century Gothic Paneuropean', sans-serif;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
    }
}

.label-error{
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

#success-modal {
    z-index: 999;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: 720px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#modal-close{
    position: absolute;
    top: 30px;
    right: 30px;
}

#modal-close:hover{
    cursor: pointer;
}

#success-modal-content{
    position: relative;
    display: flex;
    padding: 30px;
    border-radius: 15px;
    background-color: #062644;
    width: 100%;

    > div:not(:nth-child(1)){
        width: 50%;
    }
}

#success-modal-info{
    display: flex;
    justify-content: space-between;
    flex-direction: column;

    h2{
        margin-bottom: 30px;
    }

    button{
        margin-top: 30px;
    }

    a{
        text-decoration: none;
    }
}

#success-modal-img{
    display: grid;
    place-content: center;

    img{
        width: 90%;
        height: 100%;
        object-fit: cover;
    }
}