/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 10/04/2015, 14:00:45
    Author     : Renato Benkendorf
*/

@-webkit-keyframes slide {
    0% { left: 0%; }
    5% { left: 0%; }
    10% { left: 0%; }
    15% { left: -100%; }
    20% { left: -100%; }
    30% { left: -200%; }
    40% { left: -200%; }
    50% { left: -300%; }
    60% { left: -300%; }
    70% { left: -200%; }
    80% { left: -200%; }
    85% { left: -100%; }
    90% { left: -100%; }
    95% { left: 0%; }
    100% { left: 0%; }
}

@keyframes slide {
    0% { left: 0%; }
    5% { left: 0%; }
    10% { left: 0%; }
    15% { left: -100%; }
    20% { left: -100%; }
    30% { left: -200%; }
    40% { left: -200%; }
    50% { left: -300%; }
    60% { left: -300%; }
    70% { left: -200%; }
    80% { left: -200%; }
    85% { left: -100%; }
    90% { left: -100%; }
    95% { left: 0%; }
    100% { left: 0%; }
}

.slider{
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    min-height: 100%;
    min-width: 100%;
}

.galeria{   
    position: absolute;
    height: 100%;
    width: 400%;
    z-index: 1;
    left: 0;
    top: 0;
    background: black;
    -webkit-animation: 35s slide infinite;
    -moz-animation: 35s slide infinite;
    -ms-animation: 35s slide infinite;
    -o-animation: 35s slide infinite;
    animation: 35s slide infinite;
}


.galeria div{
    min-height: 100%;
    width: 25%;
    float: left;
}

.galeria #imagem1{
    background: url("imagens/imagem_1.jpg") no-repeat center top;
}
.galeria #imagem2{
    background: url("imagens/imagem_2.jpg") no-repeat center top;
}
.galeria #imagem3{
    background: url("imagens/imagem_3.jpg") no-repeat center top;
}
.galeria #imagem4{
    background: url("imagens/imagem_4.jpg") no-repeat center top;
}

.conheça-nos{
    min-width: 75%;
    min-height: 50%;
    position: absolute;
    z-index: 2;
    margin-top: 12.5%;
    margin-bottom: 12.5%;
    margin-left: 12.5%;
    margin-right: 12.5%;
    z-index: 3;
    text-align: center;
}

.logo-central{
    position: relative;
    max-width: 450px;
    max-height: 340px;
}

#conheça-nos{
    width: 100%;
    height: auto;
    position: relative;
}


#conheça-nos a{
    font-size: 16px;
    font-family: 'open_sanslight';
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    background-color: rgb( 237, 27, 47 );
    box-shadow: 0px 0px 81px 0px rgb( 0, 0, 0 );
    -moz-transition: background-color 0.8s 0.25s linear;
    -ms-transition: background-color 0.8s 0.25s linear;
    -o-transition: background-color 0.8s 0.25s linear;
    transition: background-color 0.8s 0.25s linear;
    -webkit-transition: background-color 0.8s 0.25s linear;
}

#conheça-nos a:hover{
    background-color: #7d889e;
}

.conheça-nos .baixo{
    visibility: visible;
    margin-top: 2%;
    opacity: 0.2;
    z-index: 2;
}

.conheça-nos .baixo:hover{
    opacity: 1;
}

/*

.indicadores{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height: 30px;
    padding: 20px;
    margin-bottom: 2%;
}

.indicadores ul{
    float: right;
    margin-right: 2%;
}

.indicadores li{
    display: inline-block;
}

.indicadores a{
    width: 20px;
    height: 20px;
    background: white;
    float: left;
    margin-left: 20px;
    opacity: 0.55;
}

.indicadores a:checked{
    opacity: 1;
}

.indicadores a:hover{
    opacity: 1;
}

.indicadores a:focus{
    opacity: 1;
}*/