/** fonts **/
@font-face {
    font-family: 'UniSans Regular';
    src: url('fonts/uni-sans-regular.eot');
    src: url('fonts/uni-sans-regular.eot?#iefix') format('embedded-opentype'),
    url('fonts/uni-sans-regular.woff') format('woff'),
    url('fonts/uni-sans-regular.ttf') format('truetype'),
    url('fonts/uni-sans-regular.svg#b9a4336b2752d94a8a5b0c5d52ec5b63') format('svg');
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'UniSans SemiBold';
    src: url('fonts/uni-sans-bold.eot');
    src: url('fonts/uni-sans-bold.eot?#iefix') format('embedded-opentype'),
    url('fonts/uni-sans-bold.woff') format('woff'),
    url('fonts/uni-sans-bold.ttf') format('truetype'),
    url('fonts/uni-sans-bold.svg#9548c045e7539b9fbd197d6c46ec7af7') format('svg');
    font-style: normal;
    font-weight: 700;
}

/** geral **/
html {
    font-size: 62.5%;
}

body {
    color: #333;
    font-family: 'UniSans Regular', Tahoma, Arial, sans-serif;
}

img {
    max-width: 100%;
}

figure {
    max-width: 100%
}

figure img {
    max-width: 100%;
    width: 100%;
}

h1, h2, h3, b, strong {
    font-family: 'UniSans SemiBold';
}

h1 {
    color: #808080;
    font-size: 4.8em;
    text-align: center;
}

h3 {
    color: #595959;
    font-size: 1.8em;
    margin: 20px 0;
}

h4 {
    font-size: 2.2em;
    margin: 8px 0;
    padding: 0;
}

h5 {
    font-size: 1.2em;
    margin: 18px 0;
}

p {
    font-size: 1.2em;
    margin: 0;
    padding: 0;
}

.botao {
    background-color: #FFF;
    color: #333;
    font-family: 'UniSans SemiBold';
    text-align: center;
    text-decoration: none;
    font-size: 1.2em;
    border: 1px solid #333;
    border-radius: 100px;
    padding: 15px 60px;
    display: block;
    width: 200px;

    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

.botao:hover {
    background-color: #333;
    color: #FFF;
    text-decoration: none;
}

.float-none {
    float: none !important;
}

/** cabeçalho **/
header {
    background-color: #FFF;
    z-index: 9999;
}

header .menu input {
    display: none;
}

header .menu label {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    color: #fff;
    display: none;
    cursor: pointer;
    position: relative;
    margin: 40px 0;
}

header .menu label:active {
    background-color: #e5e5e5;
}

header .menu label span {
    width: 30px;
    height: 3px;
    background-color: #222;
    position: absolute;
}

header .menu label span.top {
    top: 12px;
    left: 8.5px;
}

header .menu label span.middle {
    top: 22px;
    left: 8.5px;
}

header .menu label span.bottom {
    bottom: 12px;
    left: 8.5px;
}

header .menu ul li.product-menu-item {
    display: none;
}

header h1 img {
    width: 300px;
    float: left;
}

@media only screen and (max-width: 768px) {
    header {
        position: relative;
    }

    header .menu label {
        display: block;
    }

    header .menu ul {
        display: block;
        position: absolute;
        top: 100%;
        width: 100%;
        left: 0;
        background-color: #fff;
        border-top: 1px solid #e5e5e5;
        padding: 20px 15px;
        display: none;
    }

    header .menu ul li.product-menu-item {
        display: block;
    }

    header .menu input:checked ~ ul {
        display: block;
    }

    header h1 img {
        width: 250px;
    }

    h1 {
        font-size: 3.8em;
    }

    .info-inicio .row > div {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 360px) {
    header h1 img {
        width: 200px;
    }
}

/** produtos **/
.produtos h1 {
    font-size: 46px;
}

.produtos .produto {
    overflow: hidden;
}

.produtos .produto {
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    -moz-transition: .2s ease;
    transition: .2s ease;
}

.produtos .produto:hover {
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
    z-index: 1000;
}

.coluna-sidebar {
    background-color: #EEE;
    float: left;
    width: 100%;
    min-height: 600px;
    padding: 0 15px;
}

@media only screen and (max-width: 768px) {
    .coluna-sidebar {
        display: none;
    }
}

.coluna-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coluna-sidebar h3 {
    text-align: center;
    border-bottom: 1px solid #B3B3B3;
    padding: 20px 0;
    margin: 0;
    margin-bottom: 15px;

}

.coluna-sidebar a {
    color: #333;
    font-size: 14px;
    padding: 10px 30px;
    display: block;
}

.coluna-sidebar .sub {
    margin: 0;
    padding: 0;
    display: none;
    padding-left: 25px;
}

.coluna-sidebar .top:hover .sub {
    display: block;
}

.galeria a {
    display: block;
    padding: 15px;
    max-width: 33%;
    float: left;
    text-decoration: none;
}

.galeria span {
    display: block;
    margin-top: 15px;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .galeria img {
        padding: 10px;
        max-width: 50%;
    }
}

@media only screen and (max-width: 480px) {
    .galeria img {
        padding: 10px;
        max-width: 100%;
    }
}

.produto-descricao h3 {
    margin-top: 0;
}

.produto-descricao h5 {
    margin: 25px 0;
}

.produtos .botao {
    margin: 0 auto;
    margin-top: 40px;
}

/** contato **/
#contato h3,
#localizacao h3 {
    color: #333;
    font-size: 2em;
    text-align: center;
    margin-bottom: 60px;
}

#contato * {
    outline: none;
}

#contato input[type="text"],
#contato textarea {
    color: #595959;
    font-size: 1.5em;
    border: 1px solid #BBB;
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    resize: none;
}

/** rodape **/
.rodape {
    margin-top: 100px;
    padding: 20px 0;
}

.rodape .social {
    list-style: none;
    display: table;
    margin: 0 auto;
    margin-bottom: 15px;
    padding: 0;
}

.social a {
    font: 0/0 a transparent;
    text-indent: -999999;
    background: url('../images/social.png') no-repeat;
    background-size: 100px;
    height: 28px;
    width: 28px;
    margin: 0 5px;
    display: inline-block;
}

.social a.facebook {
    background-position-x: -36px;
}

.social a.instagram {
    background-position-x: -73px;
}

/*.social li a {
    display: block;
    height: 28px;
    width: 28px;
}*/

.rodape p {
    color: #999;
    font-family: Arial;
    font-size: 12px;
    text-align: center;
}

/* FORM */

#contactform {
    padding-top: 20px;
}

.contactform-input {
    background: none;
    border: 2px #848984 solid;
    height: 67px;
    margin-bottom: 10px;
    font-size: 23px;
    padding-left: 10px;
    color: #474846;
    width: 98%;
}

.button {
    background-color: #FFF;
    color: #333;
    font-family: 'UniSans SemiBold';
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    border: 1px solid #333;
    border-radius: 100px;
    padding: 10px 50px;
    display: block;
    /* width: 200px; */
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

.button:hover {
    background-color: #333;
    color: #FFF;
    text-decoration: none;
}

.contactform-textarea {
    background: none;
    border: 2px #848984 solid;
    margin-bottom: 10px;
    font-size: 23px;
    padding-left: 10px;
    padding-top: 10px;
    color: #474846;
    width: 98%;
}

.contactform-label {
    font-size: 22px;
    color: #00385d;
}

.contactform-label small {
    font-size: 22px;
    color: #474846;
    font-weight: 600;
}

.contactform-alert {
    padding-bottom: 40px;
    font-size: 24px;
    color: #848984;
}

.contactform-help {
    font-size: 17px;
}

form {
    margin: 0;
    padding: 0;
    font-size: 25px;
    display: block;
}

.text-center {
    text-align: center;
}

.space-botton {
    margin-bottom: 70px;
}

.logos a {

}

@media only screen and (max-width: 579px) {

}

.carousel img {
    width: 100%;
}
