:root {
    --principal: #1B4D40;
    --secundaria: #1B4D40;
    --terciaria: #e1ff01;
    --botao: #134134;
    --highlight: #1B4D40;
    --texto: #060102;
    --texto2: #44444c;
    --titulo: #606070;
    --textosecundario: #FFF;

    --header-altura: 73px;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
        url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Liquid Amber DEMO';
    src: url('/assets/fonts/LiquidAmberDEMO-Regular.woff2') format('woff2'),
        url('/assets/fonts/LiquidAmberDEMO-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    color: var(--texto);
    overflow-x: hidden;
}

body.page {
   background-image: url(/assets/img/bg.jpg);
   background-size: cover;
   background-position: center;
   color: #FFF;
}

strong {
    font-weight: 700 !important;
}
a {
    color: var(--terciaria);
}
a:focus {
    color: var(--principal)
}

/* Top */
header .container {
    top: 20px;
    position: relative;
    z-index: 99;
    background-color: var(--principal);
    border-radius: 10px;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    padding: 8px
}
/* Affix */
header.scrolled .container {
    background-color: var(--principal);
} 
header a,
header .nav-link {
    color: #FFF
}
header ._logo {
   position: relative;
}
header ._logo a {
   position: absolute;
   top: -37px;
   left: 30px;
}
header .nav-link {
    font-weight: 600;
    background: transparent;
    position: relative;
    border-radius: 40px;
    font-size: 16px;
    margin: 0px 5px
}
header .nav-link:after {
    content: '';
    display: block;
    width: 2px;
    height: 20px;
    background-color: #FFF;
    position: absolute;
    right: -6px;
    top: 10px;
    bottom: 0px;
}
header ul._navmain > .nav-item:last-child .nav-link:after {
   display: none;
}
header .nav-link:hover,
header .nav-link:focus {
    color: var(--principal);   
    background-color: #FFF;
} 
header .btn-extra {
    color: var(--principal);
    background-color: #FFF;
    text-align: center;
    border-radius: 6px !important;
    position: relative;
    font-weight: 700;
    font-size: 16px;
    padding: 0px 10px;
    line-height: 37px;
}
header .btn-extra:hover {
    color: #569d7f;
}
header .btn-extra img {
   margin-right: 5px
}
/* Main */
section, .section {
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

/* Footer */
footer ._footer {
    background-color: var(--principal);
}
footer ._footer .container {
    background-image: url(/assets/img/bgfooter.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    color: #FFF;
    position: relative;
}
footer ._footer .container:before {
   content: '';
    display: block;
    position: absolute;
    top: -26px;
    background: url(/assets/img/img-footer.png);
    width: 165px;
    height: 40px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    left: 50%;
    margin-left: -72px;
}
footer ._footer_grupo {
   background-color: #FFF;
}
footer ._footer_grupo .linha:after {
    content: '';
    height: 1px;
    width: 100%;
    display: block;
    background: #1B4D41;
    background: linear-gradient(90deg, rgba(27, 77, 65, 1) 0%, rgba(87, 158, 128, 1) 100%);
    margin-top: 30px;
}

.float_whatsapp {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 50px;
    right: 15px;
    background: #005426;
    background: linear-gradient(90deg, rgba(0, 84, 38, 1) 0%, rgba(20, 137, 72, 1) 100%);
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
    z-index: 999;
}
.my-float_whatsapp {
    margin-top: 12px;
    color: #FFF;
}
.float_whatsapp:hover {
    background: #005426;
    background: linear-gradient(90deg, rgba(0, 84, 38, 1) 0%, rgba(20, 137, 72, 1) 100%);
    box-shadow: 0px 0px 2px 5px rgba(20, 137, 72, .3)
}
@media(max-width:1199px) {
   header .nav-link {
      padding-left: 5px;
      padding-right: 5px;
      font-size: 15px;
   }
}

@media(max-width:991px) {
    header {
        /* full banner */
        padding-top: var(--header-altura);
        position: absolute !important;

        /* banner separado 
        position: static !important*/
    }
    
    /* Affix */
    header.scrolled .container ._logo img {
        max-width: 100%;
    } 
}
@media(max-width:767px) {
   
   header .container {
      display: none;
   }
}