@charset "utf-8";
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
}

.container {
    min-height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/fundo.jpg);
}

.content {
    padding-top: 10%;
    padding-bottom: 100px;
    margin: 0 auto;
    text-align: center;
}

.content img{
    padding: 0 10%;
    padding-bottom: 5%;
    max-width: 100%;
    width: 50%;
}

.content .description{
    margin-top: 0;
    border-top: 1px solid beige;
    padding: 50px 0;
    text-align: justify;
}
.content .contacts{
    display: inline-block;
    width: 100%;
}

.content p {
    float: left;
}

.content .left {
    text-align: left;
    padding-left: 4%;
    width: 45%;
}

.content .right {
    text-align: right;
    padding-right: 4%;
    border-right: 1px solid beige;
    width: 45%;
}

.footer{
    margin-top: -80px;
    height: 80px;
    text-align: center;
    position: fixed;
    right: 0;
    left: 0;
    z-index: 100;
    bottom: 0;
    background-color: #fff;
}

.footer a {
    color: #6cc2d6;
    text-decoration: none;
    font-weight: bold;
    line-height: 80px;
    padding: 15px;
    border: 1px solid #ccc;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px; /* future proofing */
    -khtml-border-radius: 10px; /* for old Konqueror browsers */
    -moz-box-shadow:    inset 0 0 5px #ccc;
    -webkit-box-shadow: inset 0 0 5px #ccc;
    box-shadow:         inset 0 0 5px #ccc;
}

.footer a img {
    vertical-align: middle;
    padding-right: 5px;
}

@media only screen and (max-width: 767px) {
    .content {
        width: 90%;
    }
}

@media only screen and (min-width: 768px) {
    .content {
        width: 700px;
    }
}

@media only screen and (min-width: 1200px) {
    .content {
        width: 900px;
    }
}
