[routerLinkActive] {
  margin: 0 7px;
}

h1 {
    font-weight: 600;
}

form btn[type^="submit"] {
    background-color: red;
}

form #pesquisar:focus {
    box-shadow: none;
    outline: none;
}

button[type^="submit"]:hover {
  border: 1px white solid;
  border-radius: 10px;
}

input {
    height: 45px
}

input[type="checkbox"] {
    display: none;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
}

.navbar1 > div span, .navbar2 > div span {
    color: #F3F1EB;
    font-weight: bold;
}

.navbar1 > div span:hover, .navbar2 > div span:hover  {
    color: blueviolet;
}

#navMenuCelular span {
    color: #131A50;
    font-weight: 500;
    font-family: sans-serif;
    font-size: 20px;
}

.nav-titulo img {
    margin-right: 90px;
}

.navbar1 li {
    align-self: center;
}

.navbar2 li {
    align-self: center;
}

.nav-titulo a {
    font-size: 40px;
    font-weight: 700;
    color: white;
}

.nav-titulo a:link {
    font-size: 40px;
    font-weight: 700;
    color: white;
}

.nav-titulo label svg {
    cursor: pointer;
}

.nav-titulo label svg:hover {
    color: white;
}

.nav-titulo a:hover {
    color: white;
}
.horarioFuncionamento ul li {
    overflow: hidden;
}

.menu-link span {
    text-align: center;
    color: #131A50;
}

.menu-link a:link {
    color: #F3F1EB;
}

.nav-menu li {
    width: 100%;
    text-align: center;
}

.nav-menu li:hover {
    background-color: #E6E5E0;
}

.navbar-expand-lg .navbar-nav {
    flex-direction: row;
}

.navbar2 span {
    color: #131A50;
    font-weight: 500;
    font-family: sans-serif;
    font-size: 20px;
}

.navbar2 {
    background-color: #F3F1EB;
    padding-left: auto;
    padding-right: auto;
    overflow-y: hidden;
    padding: 0px;
    box-sizing: border-box;
}


.nav-item {
    margin-right: 20px;
}

.dropdown-menu {
  background-color: midnightblue;
  margin-top: 15px;
}

.dropdown-item {
  color: white;
  font-weight: bold;
}

.fa-magnifying-glass {
    color: #131A50;
    font-size: 19px;
}

.dropdown-item:hover {
  background-color: dodgerblue;
  color: black;
  font-weight: bold;
}

.dropdown-divider {
  color: white;
}

.linha-nav {
    padding-bottom: 24px;
}

.topo {
    display: flexbox;
    justify-content: space-around;
    background-color: #F3F1EB;
    text-align: center;
    font-size: 13px;
}

#iconeMenu {
    font-size: 24px;
    color: white;
    cursor: pointer;
}

#botaoMenu {
    display: none;
    margin: 20px auto 0 auto;
    background-color: transparent;
    border: none;
    text-align: center;
}




#navMenuCelular {
    display: none;
    background-color: #F3F1EB;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-top: 165px;
    animation: animaNavMenu .3s ease-in-out;
    overflow-y: hidden;
}

.menu-link {
    color: #F3F1EB;
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

#iconLupa {
    font-size: 24px;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-left: 1.5rem;
    margin-bottom: 0px;
}

#navMenu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 40px;
}

#navMenu ul {
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
}

.navbar-collapse {
    padding: 0px;
    padding-top: 35px;
}

#logo {
    margin-left: 30px;
}

.navbar1 {
    display: block;
    background-color: #131A50;
    overflow-y: hidden;
}

#pesquisar {
    background-color: white;
    padding-right: 7px;
    border: none;
    border-radius: 0px;
    align-self: center;
}

#btnPesquisar {
    margin: 0px;
    height: 45px;
    background-color: red;
    border: none;
    padding: 0px 10px 0 10px;
}

#nav {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 0;
}

@keyframes animaNavMenu {
    0% {
        height: 2px;
    }

    100% {
        height: 135px;
    }
}

/*Colocar LOgo e barra de pesquisa um em baixo do outro em modo celular*/
@media screen and (max-width: 375px) {
    .navbar1 {
        flex-direction: column;
    }
}

@media screen and (max-width: 991px) {
    .navbar2 {
        flex-direction: row;
    }
}

@media screen and (max-width: 767px) {
    #nav {
        flex-direction: column;
        width: 100%;
        padding-right: 2rem;
    }

    .nav-titulo img {
        margin-right: 0px;
    }

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

    #botaoMenu {
        display: block;
    }

    #navMenu {
        height: 0px;
        display: none;
    }

    .navbar1 li {
        align-self: normal;
    }
}

@media screen and (min-width: 768px) {
    #navMenuCelular .nav-menu {
        display: none;
    }

    #navMenuCelular {
        padding: 0px;
        display: none;
    }
}