.logo { 
     width: 100px;
     height: 100px;
}

.logo-2 {
    display: none;
    width: 100px;
    height: 100px;
    float: right;
}


header {
    padding: 10px;
}

.bloco-2 {
    background-color: rgb(255, 255, 255);
    padding: 15px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(239, 239, 239);
    box-shadow: 0px 1px 0px rgb(167, 166, 166);
    margin-left: 7px;
    border-top: none;
}

.linha {
    color: red;
    height: 5px;
    border-style: solid;
    border-color: rgb(211, 211, 211);
    border-top: none;
    border-right: none;
    border-left: none;
}

h1 {
     color: #212121;
     font-family: sans-serif;
     font-size: 24px;
     line-height: 32px;
}

p {
     font-family: sans-serif;
     line-height: 18px;
     color: #323232;
}

span {
    color: #4A4A4A;
    font-size: 14px;
}



table {
    border-style: solid;
    border-color: rgb(218, 218, 218);
    border-width: 0.5px;
    padding: 10px;
    border-collapse: collapse;
    width: 100%;
}

table td {
    font-family: sans-serif;
    line-height: 18px;
    color: #1d1d1d;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: rgb(227, 227, 227);
    padding: 10px;
    font-size: 14px;
}


.bloco-4 {
    margin-bottom: 30px;
}

#linha-2 {
    margin-bottom: 20px;
}

#btn-1 {
    background-color: rgb(253, 252, 252);
    border-style: none;
    color: rgb(138, 138, 138);
    font-size: 14px;
    font-family: sans-serif;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.4s;
}


#btn-1:active {
    background-color: rgb(202, 202, 202);
}

#btn-2 {
    float: right;
    background-color: #DBE7F5;
    color: #3b7ac1;
    border-style: none;
    padding: 10px;
    cursor: pointer;
    transition: 0.4s;
}

#btn-2:active {
    background-color: #abccf1;
}

@media ( min-width: 960px ) {
    .bloco-2 {
         width: 80%;
         margin: auto;
    }

     .logo-2 {
     display: block;
    }
}

