@media (min-width: 481px) {

    .sousaramos {
        z-index: 2;
        position: fixed;
        bottom: 3vh;
        left: 3vh;

        padding-top: .5em;
    }

    .sousaramos img {
        height: 4vh;
    }

    .copyright {
        z-index: 2;
        position: fixed;
        
        bottom: 0;
        right: 0;
        height: 10vh;
        width: 100vw;

        box-sizing: border-box;
        padding: 3vh;
        display: flex;

        font-weight: 300;
        text-align: right;
    }

    .copyright span {
        width: 100vw;
        font-size: .55em;
        padding-top: .5em;
    }

    .copyright img {
        margin-left: 3vh;
        width: 4vh;
        height: auto;
        cursor: pointer;
    }

    .copyright strong {
        font-weight: 500;
        font-size: 1.125em;
    }
}

@media (max-width: 480px) {

    .sousaramos {
        width: 100vw;
        height: 10vh;
        display: flex;

        justify-content: start;
        align-items: center;
        
        padding: 1.25em;
        box-sizing: border-box;
    }

    .sousaramos img {
        height: 100%;
        z-index: 5;
    }

    .copyright {
        z-index: 2;
        /* position: fixed; */
        display: flex;
        color: #606060;
        font-weight: 300;
        text-align: right;
        font-size: 0.65em;
    }

    .copyright span {
        width: 100vw;
        box-sizing: border-box;
        padding: 20px;

        font-size: 1.5em;
        text-align: center;
    }

    .copyright img {
        margin-left: 25px;
        width: 50px;
        height: 50px;
        cursor: pointer;
        display: none;
    }
}