    html,body{
        height: 100%;
        min-width: 1020px;
    }
    
    body{
        font-family: 'Open Sans', arial, helvetica, sans-serif;
        line-height: 1.7;
    }
    
    a{
        transition: color .2s linear, border .2s linear;
        text-decoration: none;
        border-bottom: 1px dotted;
        color: #c8bf93;
    }
    a:hover{
        border-bottom-color: transparent;
    }
    
    p{
        margin: 0 0 2em;
    }
    
    img{
        max-width: 100%;
    }
    
    h1, h2, h3, h4, h5, h6{
        color: rgba(212, 25, 25, 0.685);
        font-weight: normal;
        margin: 1em 0;
        text-shadow: 1px 1px 1px crimson;
    }
    
    h1{
        font-size: 36px;
    }
    h2{
        font-size: 30px;
    }
    h3{
        font-size: 26px;
    }
    h4{
        font-size: 22px;
    }
    h5{
        font-size: 18px;
    }
    h6{
        font-size: 15px;
    }
    
    .negrito{
        color: rgba(212, 25, 25, 0.685);
    }
    
    
    ul{
        margin: 0;
        padding: 0;
        padding-left: 1.1em;
    }
    li{
        padding-left: .5em;
    }
    
    .hidden{
        width: 0;
        height: 0;
        overflow: hidden;
        visibility: hidden;
        display: block;
    }
    
    .ul-icons{
        list-style-type: none;
        padding-left: 0; 
    }
    .ul-icons li{
        display: inline-block;
        font-size: 2em;
        color: #c8bf93;
    }
    
    
    .button-default{
        background-color: rgba(212, 25, 25, 0.685);
        border: 3px solid rgba(212, 25, 25, 0.685);
        color: white;
        padding: .75em 1.5em;
        border-radius: 5px;
        font-size: .8em;
        display: inline-block;
        width: auto;
        transition: all .5s;
        cursor: pointer;
    }
    .button-default:hover{
        background-color: rgba(219, 78, 78, 0.815);
        border-color: transparent;
    }
    
    .imagem-link{
        border: 0;
    }
    
    .main-header{
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 35%;
        min-width: 357px;
        padding: 124px 54px 72px;
        box-sizing: border-box;
        /* background-image: linear-gradient(to left bottom,black 40%, red); */
        background-image: linear-gradient(to right bottom,black 50%, rgb(175, 8, 8));
        background-position: left top;
        background-size: auto, cover;
        text-align: right;
    }
    
    .main-header-title{
        font-size: 22px;
        line-height: 1.5;
        color: white;
        font-weight: normal;
        color: rgba(255, 255, 255, .5);
        text-shadow: none;
    }
    
    .main-header-paragrafo{
        color: rgba(212, 200, 200, 0.925);
    }
    
    .main-header-title strong{
        color: white;
        font-weight: normal;
    }
    
    
    .main-content{
        width: 65%;
        margin-left: 35%;
        padding: 89px 54px 72px;
        box-sizing: border-box;
        background-color: rgb(49, 49, 49);
        color: rgb(206, 206, 206);
    }
    
    .main-content-paragrafo{
        line-height: 2.5;
    }
    
    .main-header-link img{
        border-radius: 40%;
        height: 50%;
        overflow: hidden;
    }
    
    .recent-works-card img{
        border-radius: 10px;
        overflow: hidden;
    }
    
    .recent-works-card-title{
        margin-bottom: 1%;
    }
    
    .last__section{
        border-bottom: 2px dashed whitesmoke;
        padding-bottom: 3%;
    }
    
    hr{
        margin-top: 10%;
        margin-bottom: 15%;
    }
    
    .destaque__section{
        border: 4px double whitesmoke;
        box-sizing: border-box;
        padding: 2em;
    }
    
    .destaque__h1, .destaque__h2{
        color: #c8bf93;
        text-shadow: 1px 1px 1px #7c6205;
        font-family: 'MonteCarlo', cursive;
        font-size: 3em;
        margin-bottom: 2%;
    }
    
    .destaque__p{
        font-family: 'Georama', sans-serif;
        font-size: 1.5em;
        color: whitesmoke;
        margin-left: .5em;
    }
    
    .main-footer{
        position: fixed;
        bottom: 0;
        width: 35%;
        min-width: 357px;
        left: 0;
        padding: 0 54px 72px 0;
        box-sizing: border-box;
        text-align: right;
    }
    .main-footer a{
        color: rgba(255, 255, 255, 0.664);    
        text-decoration: none;
    }
    .main-footer a:hover{
        color: #b4a03a;   
    }
    .main-footer .ul-icons a{
        font-size: 1em;   
        border-bottom: none;
    }
    .copyright{
        list-style: none;
    }
    .copyright li{
        display: inline-block;
        border-left: solid 1px rgba(255, 255, 255, 0.25);
        padding: 0 0.75em;
        line-height: 1;
        font-size: .8em;
    }
    .copy__span{
        color: rgba(212, 205, 205, 0.87);
    }
    .copyright li:first-child {
        border-left: 0;
    }
    .copyright li:last-child {
        padding-right: 0;
    }
    
    /* Grid */
    .row{
        overflow: auto;
    }
    
    .col-2{
        width: 100%;
        float: left;
    }
    .col-2-3{
        width: 48%;
        float: left;
    }
    .col-1-3{
        width: 48%;
        float: left;
        margin-left: 3%;
    }
    