#topo {
    position: sticky;
    width: 100%;
    padding: 10px 0;
    z-index: 1;
    background: #fff;
    -webkit-box-shadow: 0px 1px 15px 0px rgba(148, 148, 148, 0.3);
    -moz-box-shadow: 0px 1px 15px 0px rgba(148, 148, 148, 0.3);
    box-shadow: 0px 1px 15px 0px rgba(148, 148, 148, 0.3);
}

#topo .search-container {
    float: right;
}

#topo input[type="text"] {
    padding: 6px;
    /* margin-top: 8px; */
    font-size: 17px;
    border: none;
}

#topo .search-container button {
    float: right;
    padding: 6px 10px;
    /* margin-top: 8px; */
    margin-right: 16px;
    background: #9B6D4C;
    color: #fff;
    font-size: 17px;
    border: none;
    cursor: pointer;
}

#menu {
    padding-top: 25px;
}

#main-nav {
    background: none;
    border: none;
    display: flex;
    justify-content: flex-end;
}

.nav .navbar-nav {
    vertical-align: middle;
}

.navbar-default .navbar-nav > li > a {
    font-family: 'Batusa', Georgia;
    font-size: 14px;
    font-weight: 400;
    color: #3d3d3d;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;

    padding: 10px;

    transition-duration: 0.5s;
}

.navbar-collapse {
    border-top: none;
}


/* Banners */

#banner {
    background-color: black;
    display: flex;
    align-items: center;
}

#banner img {
    opacity: 0.6;
}

#banner.CENTER {
    justify-content: center;
    text-align: center;
}

#banner.LEFT {
    justify-content: flex-start;
}

#banner.RIGHT {
    justify-content: flex-end;
}

#banner.LEFT .slogan {
    padding-left: 100px;
}

#banner.RIGHT .slogan {
    padding-right: 100px;
}

.slogan {
    position: absolute;

    color: #fff;
}

.slogan h1 {
    font-size: 6rem;
}

.slogan p {
    font-size: 1.8rem;
}

.slogan a {
    font-size: 1.6rem;
}

.slogan .row {
    justify-content: center;
}

@media only screen and (max-width: 768px) {
    #banner {
        justify-content: center !important;
    }

    .slogan {
        padding: 0 !important;
    }
}

/* Fim Banners */


@media only screen and (max-width: 767px) {
    #main-nav {
        display: block;
    }

    .navbar-default .navbar-nav > li > a {
        text-align: right;
    }
}

@media screen and (max-width: 600px) {
    #topo .search-container {
        float: none;
    }

    #topo .search-container button {
        float: right;
        position: absolute;
    }
}

@media only screen and (max-width: 425px) {
    #topo input[type="text"] {
        width: 90%;
    }
}