*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body{
    background: #f3f3f3;
    background-size: 600px;
    height: 100%;
    overflow-x: hidden; 
    font-family: 'Montserrat', sans-serif;
}

img {
    width: 100%;
}

/* ===== CONTAINER GERAL ===== */
.container_geral {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
}

/* ===== LOGO =====*/
.logo {
    width: 52px;
    z-index: 2;
    margin-right: 20px;
    margin-top: 30px;
    float: left;
}

/* ===== NOME DO CLIENTE =====*/
.nome_cliente {
    font-size: 14px;
    padding: 30px 0 15px 0;
    line-height: 1.3em;
    color: #272822;
    z-index: 2;
    font-weight: 600;
    border-bottom: 1px solid #dddddd;
}

.nome_cliente span {
    font-weight: 400;
}

/* ===== CONTAINER MENU =====*/
.container_geral:last-child{
    margin-bottom: 100px;
}

/* ===== MENU LINKS =====*/
.menu {
    width: 100%;
    height: 100%;
    z-index: 3;
    clear: both;
}

.menu h2 {
    margin-top: 30px;
    font-size: 20px;
}

.menu h3 {
    margin-top: 20px;
    font-size: 16px;
    color: #505050;
}

.menu h4 {
    margin-top: 15px;
    font-size: 14px;
    color: #999999;
}

/* ===== TITULO LINKS =====*/
.titulo_links {
    position: relative;
    color: #272822;
    margin-top: 30px;
    margin-bottom: 5px;
    font-size: 24px;
}

/* ===== BOTÕES =====*/
.botao {
    position: relative;
    width: 240px;
    height: 40px;
    margin-right: 20px;
    margin-top: 5px;
    cursor: pointer;
    display: inline-block;
    background: #dddddd;    
}

.botao:hover {
    background: none;
    box-shadow: inset 0 0 0 1px #dddddd;
}

.botao p{
    position: relative;
    font-size: 13px;
    color: #272822;
    top: 12px;
    left: 14px;
}

/* ========== RESPONSIVE ==========*/
@media (max-width:998px) {
    .container_geral{
        padding: 0 5%;
    }
    .menu{
        display: table;
    }

    .menu div{
        width: 48%;
        float: left;
        margin-right: 4%;
    }
    .menu div:nth-child(2n+1) {
        margin-right: 0;
    }
}

@media (max-width:450px) {
    .menu div{
        width: 100%;
        float: none;
        margin-right: 0;
    }
}

