html, body {
    height: 100%;
    background: #F0F0F0;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #592668;
    overflow-x: hidden;
}

header {
    position: relative;
}

.wrap {
    min-height: 100%;
}

main {
    overflow:auto;
    padding-bottom:150px;
}

h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

h1:after {
    content: "";
    float: left;
    background: #592668;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    margin-top: 5px;
}

h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
}

h2.big {
    font-size: 1.5rem;
}

h3 {
    font-weight: normal;
    font-size: 1rem;
}

p {
    font-size: 0.8rem;
}

h2:after {
    content: "";
    float: left;
    background: #BFC4CC;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    margin-top: 3px;
}

.obs {
    text-align: right;
    position: absolute;
    right: 0;
    font-size: 0.75rem;
    top: 8px;
}

.voltar {
    text-align: right;
    position: absolute;
    font-size: 1.5rem;
    top: calc(100% - 35px);
    z-index: 999;
    right: 35px;
}

.voltar a {
    color: #592668;
}

.voltar a i {
    background: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
}

.lang {
    text-align: right;
    position: absolute;
    font-size: 1.5rem;
    top: calc(100% - 60px);
    z-index: 999;
    right: 90px;
}

.lang img {
    height: 35px;
    width: auto;
}

.bloco-item {
    position: relative;
}

.bloco-item:after {
    content: "";
    background: #BFC4CC;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    margin-top: 3px;
    position: absolute;
    top: calc(100% - 15px);
}

.preco {
    text-align: right;
}

.ramais .preco {
    width: 20%;
    font-size: 0.8rem;
}

.titulo {
    padding-right: 10px;
}

footer {
    position: relative;
    margin-top: -50px; /* negative value of footer height */
    height: 50px;
    clear:both;
}

footer img {
    height: 50px !important;
    width: auto;
}

.interna {
    height: 100%;
}

.interna main {
    margin-top: -20px;
    background: #fff;
    box-shadow: 0px 5px 10px #999;
    position: relative;
    height: 80%;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-bottom: 30px !important;
}

.interna.hotel main {
    overflow: inherit !important;
}

footer.interno {
    background: rgb(240,240,240);
    background: linear-gradient(0deg, rgba(240,240,240,1) 0%, rgba(240,240,240,1) 50%, rgba(240,240,240,0) 100%);
}

@media only screen and (min-width: 768px) {
    /* For mobile phones: */
    body {
      max-width: 576px;
      margin: auto;
    }
    .interna main {
        height: 70%;
    }
}