.containerBtnVoltar{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
}

.btnVoltar{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    padding: 30px;
}

.btnV{
    width: 200px;
    height: 45px;
    background-color: #1c1c1c;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    padding: 10px 10px 10px 20px;
    gap: 30px;
    cursor: pointer;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.btnV:hover{
    transform: scale(1.1);
    box-shadow: 0px 4px 15px rgba(0.3, 0.3, 0.3, 0.3); 
}

.btnV p{
    color: #fff;
    font-size: 25px;
}

.btnV img{
    width: 20px;
    height: 35px;
}

.containerTitulo3{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.titulo3{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.titulo3 p{
    font-size: 50px;
    font-weight: 700;
}

.linhaAmarela4{
    width: 800px;
    height: 5px;
    background-color: #ECD42B;
    margin: 5px 0px 0px 0px;
}