section.home {
    width: 100%;
    max-width: 100%;
    position: relative;
    background-color: #444;
}

section.home .arrow {
    position: absolute;
    bottom: 0;
    left: calc(50% - 25px);
    width: 60px;
    height: 60px;
    background-color: rgba(204, 204, 204, .8);
    line-height: 50px;
    z-index: 2;
    color: #000;
}
section.home .arrow .icone {
    background-image: url(../images/home/arrow.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 40px;
    margin: auto;
    height: 40px;
    display: block;
    top: 5px;
    animation-name: seta;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}
@keyframes seta {
    0%   {top:5px;}
    50%  {top:15px;}
    100% {top:5px;}
}

section.home .slides {
    max-width: 1920px;
    margin: auto;
    position: relative;
}
section.home .slides .slide:before {
    content: '';
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/home/transparencia.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
}
section.home .slides .slide {
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFF;
    position: relative;
}
section.home .slides .slide {
    height: 100vh;
    padding-top: 50vh;
}
@media (max-height: 700px) {
    section.home .slides .slide {
        padding-top: calc(40vh);
    }
}
@media (max-height: 600px) {
    section.home .slides .slide {
        padding-top: calc(30vh);
    }
}
section.home {
    font-family: 'Roboto', sans-serif;
}
section.home h1 {
    color: #FFBF00;
    font-size: 400%;
    text-transform: uppercase;
    text-shadow: 5px 5px 1px rgba(0,0,0,.5);
}
@media (max-width: 576px) {
    section.home h1 {
        font-size: 280%;
    }
}
section.home p {
    font-size: 150%;
    text-transform: uppercase;
}
section.home p:nth-child(2) {
    text-shadow: 3px 3px 1px rgba(0,0,0,.5);
}
section.home .btn {
    border-radius: 0;
}
@media (min-width: 992px) {
    font-size: 130%;
}
@media (min-width: 1200px) {
    font-size: 150%;
}
@media (min-width: 1440px) {
    font-size: 160%;
}


