@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Poppins:200,300,400,400i,500,600,700i&display=swap");

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

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

html {
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #666;
    overflow-x: hidden;
    font-family: 'Open Sans', sans-serif;;
    line-height: 1.8;
    font-size: 15px; 
}

h1 {
    font-size: 70px;
    line-height: 1.2333333333333333; 
}

h2 {
    font-size: 36px;
    line-height: 1.3380952380952381; 
}

h3 {
    font-size: 32px;
    line-height: 1.3833333333333333; 
}

h4 {
    font-size: 24px;
    line-height: 1.3380952380952381; 
}

h5 {
    font-size: 20px;
    line-height: 1.3380952380952381; 
}

h6 {
    font-size: 16px;
    line-height: 1.2380952380952381; 
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #101425;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

p {
    color: #666;
    hyphens: auto;
    margin-bottom: 10px; 
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.4s; 
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: inherit;
}

a:hover {
    color: var(--primary); 
}

ul {
    list-style: none;
}

.container {
/*
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
*/
	margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
    display: flow-root;

}

@media (min-width: 768px) {
    .container {
        width:750px
    }
}

@media (min-width: 992px) {
    .container {
        width:970px
    }
}

@media (min-width: 1200px) {
    .container {
        width:1170px
    }
}

@media (min-width: 1600px) {
    .container {
		width: 90%;
	    max-width: 1600px;
        /*width: 1360px;*/
    }
}

@media (max-width: 992px) {
    nav .container {
        width: 100%;
    }
}

.sectiontitle {
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
}

/*nav*/
nav {
    padding: 22px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 999;
    transition: all .4s;
}

.nav--branco {
    background-color: #fff;
}

.nav--parado {
    position: absolute;
}

nav.fixed {
    position: fixed;
    background: #fff;
    box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
    padding: 10px 0;
	transition: all .4s;
}
nav.fixed img{ max-height:50px; max-width:260px; transition: all .4s; }

nav .container{
    display: flex;
    flex-flow: row wrap;
    /* justify-content: flex-end; */
	justify-content: space-between;
    align-items: center;
}

.nav__logo {
    /* margin-right: auto; */
	/* margin:0 auto; */
}

.nav__logo img {
    display: block;
    max-width: 500px;
    max-height: 150px;
	transition: all .2s;
}

.nav__logo h1 {
    position: absolute;
    width: 40%;
    text-indent: -10001px;
    padding: 0;
    margin: 0;
}

.nav__links {
    display: flex;
    flex-flow: row nowrap;
}

.nav__links li {
    margin-right: 20px;
    position: relative;
	cursor:hand;
	cursor:pointer;
}

.nav__links span, .nav__links span a{ color: #FFF; text-shadow: 0px 1px 2px #272727; font-size: 16px; }
.nav__links a{ color: #111; }
.nav__links a,
.nav__links span
{
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    
    cursor: pointer;
    transition: 0.1s;
    line-height: 50px;
}
ul.nav__links > li > a {
    color: #FFF;
    text-shadow: 0px 1px 2px #272727;
    font-size: 16px;
}
.nav_black span, .nav_black span a{ color: #000; text-shadow: none;  }


.nav__links a:hover,
.nav__links span:hover
{
    /* color: var(--primary); */
}

.dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    width: 225px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
    z-index: 9;
    transition: all 0.4s ease;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
	box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.2);
}

.nav__links li:hover .dropdown{
    visibility: visible;
    opacity: 1;
}

.dropdown li {
    margin-right: 0;
}

.dropdown a {
	padding: 10px 5px 10px 15px;
    /* padding: 12px 20px; */
    display: block;
    font-size: 14px;
    line-height: 1.2;
}

.dropdown a:hover {
    text-decoration: underline;
	background-color: #f1f1f1;
}

.btn {
    height: 48px;
    line-height: 46px;
    padding: 0 30px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 0;
    font-size: 14px;
    transition: all 0.5s ease;
    font-weight: 600;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
}

.btn:hover {
    color: #fff;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    transform: scale(1, 0.5);
}

.btn:hover:before {
    opacity: 1;
    transform: scale(1, 1);
}

nav .btn {
    max-width: 270px;
}

@media (max-width: 768px) {
    .nav__logo img {
        width: auto;
		max-width:100%;
    }

    .nav__links {
        display: none;
    }

    nav .btn {
        display: none;
    }

    .nav__mobile__links .btn{
        display: block;
    }
}

/*navmobile*/
.nav__mobile__toggle {
    margin-left: 20px;
    font-size: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #000;
    display: none;
	text-shadow: 0px 1px 1px #ffffff;
}

.nav__mobile__links {
    width: 100%;
    display: none;
    flex-flow: row wrap;
    justify-content: flex-start;
    background-color: #fff;
    margin-top: 10px;
    padding: 20px;
}

.nav__mobile__links li {
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.nav__mobile__links li i {
    position: absolute;
    right: 0px;
    top: 13px;
}

.nav__mobile__links__item
{
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    display: block;
    color: #111;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    cursor: pointer;
}

.nav__mobile__links li:last-child a{
    border-bottom: none;
}

.nav__mobile__dropdown {
    width: 100%;
    padding-left: 20px;
    display: none;
}

.nav__mobile__dropdown a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 768px) {
    .nav__mobile__toggle {
        display: block;
    }
}
/*end navmobile*/
/*end nav*/