.vaga{
    background:#ffffff;
    border-left:6px solid #c8102e;
    border-radius:12px;
    padding:30px;
    margin-bottom:30px;
    width:100%;
    box-sizing:border-box;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.vaga h2{
    margin:0 0 15px 0;
    font-size:36px;
    color:#222;
    font-weight:700;
}

.meta{
    display:flex;
    gap:25px;
    margin-bottom:20px;
    color:#666;
    font-size:16px;
    font-weight:600;
}

.descricao{
    font-size:18px;
    line-height:1.7;
    color:#444;
    margin-bottom:25px;
}

.btn{
    display:inline-block;
    background:#c8102e;
    color:#fff !important;
    text-decoration:none;
    padding:14px 30px;
    border-radius:8px;
    font-size:16px;
    font-weight:700;
    transition:.3s;
}

.btn:hover{
    background:#a50d26;
}

@media(max-width:768px){

    .vaga{
        padding:20px;
    }

    .vaga h2{
        font-size:26px;
    }

    .meta{
        flex-direction:column;
        gap:8px;
    }

}