* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    /*outline: 1px solid red !important;*/
    line-height: 1.6;
}

*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Barlow", sans-serif;
    color: #878986;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.125;
    -webkit-font-smoothing: antialiased;
}

a {
    color: unset;
    text-decoration: unset;
}

.container {
    width: 1400px;
    margin: 0 auto;
    max-width: 90%;
}

.fundo {
    background-color: #f5f0e9;
}

/*header*/
header .container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.header__info {
    flex: 1;
    text-align: left;
}

.header__info a:hover {
    color: var(--secondary);
}

.header__info .email {
    margin-right: 20px;
}

.header__info i{
    margin-right: 5px;
    color: var(--secondary);
}

.header__logo {
    max-height: 100px;
    flex: 1;
    text-align: center;
}

.header__logo img {
    display: block;
    margin: 0 auto;
	max-height: 180px;
}

.header__socials {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
}

.header__socials a {
    border-radius: 50%;
    background-color: #f5f0e9;
    width: 44px;
    height: 44px;
    color: #878986;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
    margin-left: 10px;
}

.header__socials a:hover {
    background-color: var(--secondary);
    color: #fff;
}

@media (max-width: 1280px) {
    .header__info {
        display: flex;
        flex-flow: column wrap;
        align-items: flex-start;
    }

    .header__info .email {
        white-space: nowrap;
    }
}

@media (max-width: 990px) {
    .header__info {
        display: none;
    }

    .header__socials {
        display: none;
    }
}
/*end header*/

/*nav*/
nav {
	background:url(/32/imagens/nav-bg.png) top center;
	background-color: #f5f0e9;
    position: relative;
	background-repeat: no-repeat;
}

nav .container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.nav__link {
	font-size:18px;
/*    height: 84px;
    line-height: 84px;
    margin: 0 17px; */
	margin: 22px 17px 17px 17px;
	transition: 0.2s ease;
	color: #404a3d;
}

.nav__link:hover, .navdropdown__link:hover{ color:#000; }

.nav__link > span {
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.nav__link > span:hover {
    color: #404a3d;
}

.nav__link > span:before {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--primary);
    transition: width 0.35s cubic-bezier(0.35, 0.7, 0.35, 1) 0s;
}

.nav__link:hover > span:before {
    width: 100%;
    left: 0;
}

.navdropdown {
    position: relative;
}

.navdropdown__content {
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 100%;
    width: 250px;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    box-shadow: 0 0px 30px 0 rgba(0, 0, 0, 0.1);
    transition: all ease 0.3s;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.navdropdown:hover > .navdropdown__content {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transition: all ease 0.3s;
}

.navdropdown__link {
    font-size: 18px;
    padding: 6px 37px;
    color: #878986;
    display: block;
    position: relative;
    width: 100%;
    line-height: 2;
	transition: 0.2s ease;
}

.navdropdown__link:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0px;
    height: 100%;
    
    transition: 0.3s;
}

.navdropdown__link:hover:before {
    width: 2px;
    background-color: var(--primary);
}

/* NAVBAR MOBILE */
.navbar__toggle {
	display: none;
	background-color: transparent;
	border: none;
	outline: none;
	font-size: 26px;
    cursor: pointer;
    margin-top: 13px;
    padding-bottom: 0px;
	color:#6f645a;
}

.nav__mobile {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: #fff;
	list-style: none;
	width: 100%;
	padding-left: 15px;
    z-index: 1;
    box-shadow: 0px 5px 5px -5px rgba(0,0,0,0.75);
}

.nav__mobile .navbar__item {
    display: block;
    font-size: 18px;
    padding-bottom: 5px;
    cursor: pointer;
	transition: 0.2s ease;
}

.nav__mobile .navbar__btn {
	display: inline-block;
}

.nav__mobile .navbar__item:hover{ color:#000; }

.nav__mobile__dropdown {
	padding-left: 20px;
	display: none;
}
/* END NAVBAR MOBILE */

@media (max-width: 990px) {
    .nav__link {
        display: none;
    }
	.header__info {
		display: block;
	    width: 100%;
	    text-align: center;		
		margin-bottom: 12px;
		}

	header .container{display: block;}

    .navbar__toggle {
		display: block;
    }
    
}

/* navfixed*/
@keyframes navFadeIn {
    0% {
      opacity: 0;
      transform: translateY(-100%);
    }

    100% {
      opacity: 1;
      transform: translateY(0%);
    }
  }

.navfixed {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    animation: navFadeIn 1s;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.07);
    z-index: 999;
}
/* end navfixed */
/*end nav*/