@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;900&display=swap');


/*font-family: 'Poppins', sans-serif;
400 regular, 500 medium, 700 bold, 900 black.
*/

/*
----------------------------------
############# RESET ##############
----------------------------------
*/

/****   ****/
:root {

    --ng_max_width: 1192px;

    --ng_font_11: 0.6875em;
    --ng_font_14: 0.875em;
    --ng_font_16: 1em;
    --ng_font_18: 1.125em;
    --ng_font_24: 1.5em;
    --ng_font_20: 1.25em;
    --ng_font_30: 1.875em;
    --ng_font_36: 2.25em;
    --ng_font_48: 3em;
    --ng_font_60: 3.75em;

    --ng_transition: 0.65s;
}
/****   ****/

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.0);
}


body {
    -webkit-text-size-adjust: 100%;
}


/*
---------------------------------
############# MAIN ##############
---------------------------------
*/

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}


main > :nth-child(odd) {
    background-color: #FFFFFF;
}


main > :nth-child(even) {
    background-color: #FAFAFF;
}

a,
input[type="submit"],
button,
i {
    text-decoration: none;
    -webkit-transition: var(--ng_transition);
    -moz-transition: var(--ng_transition);
    -ms-transition: var(--ng_transition);
    -o-transition: var(--ng_transition);
    transition: var(--ng_transition);
    color:#03CE7D
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/*
-----------------------------------
############# HEADER ##############
-----------------------------------
*/

.ng-header {
    width: 100%;
    background-color: #000;
    position: fixed;
    z-index: 999;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .5);
    transition: top 0.5s ease-in-out;
}


.ng-header_content {
    max-width: var(--ng_max_width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px;
}



/* MENU */
.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.navbar {
  width: 100%;
  color: #000;
  opacity: 0.85;
  height: 50px;
  z-index: 12;
}

.navbar-container {
  display: flex;
  justify-content: space-between ;
  align-items: center;
}

.logo > a > img { 
    width: 200px;
}

 #menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}
  
  #menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}
  
  #menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}

#menu-toggle {
    display: none;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #fff;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}
  
.menu-button::before {
    content: '';
    margin-top: -8px;
}
  
.menu-button::after {
    content: '';
    margin-top: 8px;
}

.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
  
.menu > li {
    margin: 0em 1rem;
    overflow: hidden;
}

.menu > li > a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease-in-out;    
}

.menu > li > a:hover {
    color: #ff6633; 
}


.ng-boot_btn {
    font-size: var(--ng_font_18);
    color: #ff6633;
    background-color: #ff6633;
    padding: 5px 30px;
    display: block;
    width: max-content;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}


.ng-boot_btn:hover {
    background-color: #fff;
}


/*
----------------------------------
############# PROMO ##############
----------------------------------
*/

.banner {
    padding-top: 150px;
    width: 100%;
    background: url(../../img/img1.png);
    background-attachment: fixed;
    background-size: cover;
    max-height: 1080px;
    min-height: 1000px;
    height: 100%;
    display: flex;
    align-items: center;
}


.banner_content {
    max-width: var(--ng_max_width);
    width: 100%;
    margin: 0 auto;
    margin-top:-70px;
}


.banner_content_center > header > h1 {
    font-size: 60px;
    color: #ff6633;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.4;
    position: relative;
}

.banner_content_center > header > h3 {
    color: #fff;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.4;
    position: relative;
}


.banner_content_center > header > p {
    font-size: var(--ng_font_18);
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
}

.corl1 {
    color: #ff6633;
}




.banner_content_left > a {
    padding: 16px 64px !important;
}


.banner_content_left > a:hover {
    background-color: #fff;
}


/*
-----------------------------------
############# DOBRA 2 ##############
-----------------------------------
*/

.faixa {
    width: 100%;
    background-color: #ff6633;
    padding: 20px;
}

.faixa_1 > h1 {
    color: #fff;
    font-size: 45px;
}

.dobra {
    width: 100%;
    background: url(../../img/img2.png);
    background-size: cover;
    height: 1000px; 
    display: flex;
    align-items: center;
}

.dobra2 > p {
    font-size: 25px;
    font-weight: 500;
}

.corl {
    color: #ff6633;  
    font-weight: 600;
}

.dobra2_t{
    font-size: 20px;
}

.ng-boot_btn_1 {
    font-size: var(--ng_font_18);
    color: #fff;
    font-weight: 600;
    background-color: #ff6633;
    padding: 20px 70px;
    display: block;
    width: max-content;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}


.ng-boot_btn_1:hover {
    background-color: #333333;
    color: #fff;
}

.botao_f{
   display: flex;
   flex-direction: column;
   width: 100%;
   justify-content: center;
   align-items: center;
}



/*
-----------------------------------
############# FOOTER ##############
-----------------------------------
*/





.ng--footer_medium_contact  {
    max-width: 283px;
    width: 100%;
}


.ng--footer_medium_content_right {
    width: 50%;
    display: flex;
}


.ng--footer_medium_social {
    display: flex;
    margin-top: 15px;
}


.ng--footer_medium_social > a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 37px;
    height: 37px;
    color: #0F0F14;
    background-color: #81818D;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}


.ng--footer_medium_social > a:hover {
    background-color: var(--ng_green);
}


.ng--footer_medium_social > a:not(:last-child) {
    margin-right: 12px;
}


/* [ConteÃƒÂºdo ao Bottom Footer] */

.ng--footer_bottom {
    background-color: #0F0F14;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}


.ng--footer_bottom > img {
    max-width: 81px;
    width: 100%;
    margin-bottom: 16px;
}


.ng--footer_bottom > p {
    font-size: var(--ng_font_16);
    line-height: 1.4;
    color: #FFFFFF;
}


/*MENU RODAPE*/

.menu1 {
    background-color: #0f0f14;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.text1 > li{
    padding: 5px;
    list-style: none;
}

.text1 > h5  {
    color: #ffffff;
}


.text1 > p {
    color: #81818D;
    text-decoration: none;
}

.text1 > p > a {
    color: #fff;
    text-decoration: none;
}


.log_img > img {
    width: 30%;
}

/*PAGINA POLITICA */

.politica {
    max-width: var(--ng_max_width);
    width: 100%;
    margin: 0 auto;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
}

.politica > h1 {
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: -2px;
    color: #22222e;
    margin-top: 100px;
}

.politica > h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -2px;
    color: #22222e;
}



/*PAGINA ESQUECEU A SENHA */




/**********Responsive****************/

@media (max-width: 900px) {
   
     .ng-us-items {
       display: flex;
       align-items: center;
       flex-direction:column;
       flex-wrap: wrap;
       padding: 20px 20px; 
   }
  .menu {
   position: absolute;
   top: 0;
   margin-top: 100px;
   left: 0;
   flex-direction: column;
   width: 100%;
   justify-content: center;
   align-items: center; 
   }

   .logo > a > img {
       width: 40%;
       margin-left:20px;
       
       }  
    .menu-button-container{
        margin-right: 30px;
    }
    
    
    
    .banner {
    padding-top: 100px;
    width: 100%;
    background: url(../../img/img1.png);
    background-attachment: fixed;
    background-position: top;
    background-size: cover;
    height: 100%;
    display: flex;
    align-items: center;
    }
    
    .banner_content_center{
    margin-top:0px;
    }
    
    .banner_content_center > header > h1 {
    font-size: 30px;
    color: #ff6633;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.4;
    position: relative;
    padding: 10px;
        
}


.banner_content_center > header > h3 {
    color: #fff;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.4;
    position: relative;
    padding: 10px;
}


.banner_content_center > header > p {
    font-size: var(--ng_font_18);
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
}
    .faixa_1 > h1{
        font-size: 20px;
        
    }
    
    .dobra{
        display: none;
    }
    
    .dobra_re{
    width: 100%;
    background: url(../../img/img2.png);
    background-size: cover; 
    
    }
    
    .dobra2 > p {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

    .corl {
    color: #ff6633;  
    font-weight: 600;
}

    .dobra2_t{
    font-size: 20px;
}

    .ng-boot_btn_1 {
    font-size: var(--ng_font_18);
    color: #fff;
    font-weight: 600;
    background-color: #ff6633;
    padding: 20px 70px;
    display: block;
    width: max-content;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

    .ng-boot_btn_1:hover {
    background-color: #333333;
    color: #fff;
}

    .botao_f{
   display: flex;
   flex-direction: column;
   width: 100%;
   justify-content: center;
   align-items: center;
}
    .ng-boot_btn{
        padding: 0px 15px;
    }
    
    .white{
        color: #fff;
    }
     
}

 @media (max-width: 700px) {
   .menu-button-container {
   display: flex;
   }
   .menu {
   position: absolute;
   top: 0;
   margin-top: 100px;
   left: 0;
   flex-direction: column;
   width: 100%;
   justify-content: center;
   align-items: center;
   }
   #menu-toggle ~ .menu li {
   height: 0;
   margin: 0;
   padding: 0;
   border: 0;
   transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
   }
   #menu-toggle:checked ~ .menu li {
   border: 1px solid #333;
   height: 2.5em;
   padding: 0.5em;
   transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
   }
   .menu > li {
   display: flex;
   justify-content: center;
   margin: 0;
   padding: 0.5em 0;
   width: 100%;
   color: white;
   background-color: #222;
   }
   .menu > li:not(:last-child) {
   border-bottom: 1px solid #444;
   }

    
}





/*COOKIE*/

.CookieMessage {
    width: 500px;
    position: fixed;
    bottom: 0;
    left: 10;
    right: 0;
    background: #121212;
    z-index: 999;
    display: none;
    border-radius: 10px
        
  }
  
  .CookieMessage-content {
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px 0 20px;
    font-family: sans-serif;
    line-height: 1.5;
    font-size: 12px;

  }

  .CookieMessage-content a{
    color: rgb(255, 255, 255);
  }

  .CookieMessage-content p{
    margin: 0 0 20px 0;
  }
  
  .CookieMessage-button {
    background: #ff6633;
    display: inline-block;
    text-decoration: none;
    padding: 5px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
  
  }

  .CookieMessage-button:hover{
    background: #fff;
    color:#ff6633;
  }

 @media (max-width: 1300px) {
       
       .CookieMessage {
           width: 90%;
           margin-right: 19px
       }
}
     
     
/* ------------------------ CAROUSEL --------------------- */

.ng--clients_and_partners_content {
    max-width: var(--ng_max_width);
    margin: 0 auto;
    overflow: hidden;
}

@keyframes ng_partners_animate {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc((-258px * 4)));
        /*180px + 28px = 208px*/
    }
}


.ng--clients_and_partners_content_animation {
    display: flex;
    animation: ng_partners_animate 15s linear;
    animation-iteration-count: infinite;
    animation-duration: 5s;
}


.ng--clients_and_partners_content_animation:hover,
.ng--clients_and_partners_content_animation:active {
    animation-play-state: paused;
}


.ng--clients_and_partners_content_animation > img {
    min-width: 280px;
    margin-right: 100px;
    height: 150px
}

