@charset "ISO-8859-1";
@import url(http://fonts.googleapis.com/css?family=Open+Sans:600italic,400,600,700);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Calibri', Arial, sans-serif;
}
#geral, #pattern {
    position: absolute;
    width: 100%;
    height: 100%;
}
.center {
    position: relative;
    display: block;
    top: 50%;
    width: 470px;
    height: 370px;
    margin: -185px auto 0 auto;
    background-color: rgba(245,245,245,.7);
    border-radius: 5px;
    padding: 0 45px;
}
#form-login {
    background-color: rgba(245,245,245,.7);
    border-radius: 5px;
    padding: 0 45px;
}
h1 {
    font-size: 6em;
    text-align: center;
    font-family: 'Open Sans', helvetica, arial, sans-serif;
}
label {
    color: #000;
    text-shadow: 0 0 0 #000;
    font-size: 15px;
}
.select, input {
    border: 0;
    border-radius: 4px;
    width: 100%;
    margin: 12px 0 12px 0;
}
.customSelect {
    width: 100%;
    background: url("../imagens/arrow.png") no-repeat right;
    background-color: #fefefe;
    background-size: auto 100%;
    box-shadow: inset 0px 0px 2px #aaa;
    padding: 9px 10px;
    cursor: pointer;
}
/*.customSelect.customSelectHover {...}
.customSelect.customSelectOpen {...}*/

.customSelect.customSelectFocus {
    background-color: #fafafa;
}
.customSelectInner {
    width: 100% !important;
}
input {
    padding: 8px 20px;
    outline: none;
    background: linear-gradient(to bottom, #ff4d00, #c64e00);
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    box-shadow: 0 0 2px  #444;
    cursor: pointer;
}
option {
    background-color: #fefefe;
}
p {
    text-align: center;
    width: 100%;
    color: #777;
    font-size: .9em;
    margin-bottom: .4em;
}
.pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.2 );
    background: url('../imagens/pattern.png') repeat;
}
.container-fluid, .row {
    height: 100%;
}
/*CARROSSEL*/

#sld{
    width: 100%;
    height: 100%;
    position: absolute;
}
a, img {
    width: 100%;
    border: none;
}
.trs {
    -webkit-transition:all ease-out 1s;
    -moz-transition:all ease-out 1s;
    -o-transition:all ease-out 1s;
    -ms-transition:all ease-out 1s;
    transition:all ease-out 1s;
}
#slider {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}
#slider a {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter:alpha(opacity=0);
}
.ativo {
    left: 100px;
    opacity: 1 !important;
    filter:alpha(opacity=100) !important;
}
figure {
    max-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
figcaption {
    visibility: hidden;
}

@media only screen and (max-width: 500px) {
    #sld {
        display: none;
    }

    h1 {
        font-size: 4em;
    }
}