:root {
    --principal: #ffcc0b;
    --secundaria: #242424;
    --terciaria: #51535a;
    --botao: #ffcc0b;
    --highlight: #ffcc0b;
    --texto: #060102;
    --texto2: #44444c;
    --titulo: #606070;
    --footer: #606070;
    --textosecundario: #FFF;

    --header-altura: 83px;
}

@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;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Lato", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    color: var(--texto);
    overflow-x: hidden;
}

strong {
    font-weight: 600 !important;
}
a {
    color: var(--terciaria);
}
a:focus {
    color: var(--principal)
}

/* Top */
header {
   border-top: 5px solid var(--principal)
}
header .container {
    position: relative;
    z-index: 99;
    background-color: rgba(255,255,255,1);
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 10px;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
}
/* Affix */
header.scrolled .container {
    background-color: rgba(255,255,255,.8);
} 
header a,
header .nav-link {
    color: var(--terciaria)
}
header .nav-link {
    margin: 0px 15px;
    border-radius: 200px;
    font-weight: 400;
    background: transparent;
    position: relative;
    font-size: 16px;
}
header .nav-link:after {
   position: absolute;
   background-color: var(--principal);
   width: 5px;
   height: 5px;
   content: '';
   border-radius: 20px;
   display: block;
   -webkit-transition: all .5s ease 0s;
   -moz-transition: all .5s ease 0s;
   -o-transition: all .5s ease 0s;
}
header .nav-link:hover,
header .nav-link:focus {
   color: #FFF;   
   background-color: var(--principal);
} 
header .nav-link:hover:after {
   width: 40px;
   background-color: #FFF;
}
header .btn-extra {
    color: white;
    text-align: center;
    background: #12d15e;
    border-radius: 6px !important;
    position: relative;
    margin: 0px 10px;
    padding: 5px 20px 5px 30px;
   -webkit-transition: all .5s ease 0s;
   -moz-transition: all .5s ease 0s;
   -o-transition: all .5s ease 0s;
}
header .btn-extra i {
    left: 5px;
    color: #FFF;
    position: absolute;
    top: 4px;
    font-size: 20px;
    padding-top: 3px;
}
header .btn-extra:hover {
    color: #12d15e;
    background: #FFF;
    border-color: #12d15e;
    box-shadow: 0px 0px 0px 5px rgba(18,209,94,0.3)
}
header .btn-extra:hover i {
   color: #12d15e
}
/* Main */
section, .section {
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

/* Footer */
footer ._footer {
    background: var(--footer);
    color: #FFF;
}
footer ._footer_top{
    height: 5px;
    background-color: var(--principal);
}
footer ._footer ._titulo {
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.1em;;
}
footer ._footer a {
    color: #FFF;
}
footer ._footer a:hover,
footer ._footer a:active {
    color: var(--principal);
    text-decoration: underline;
}
footer ._footer ._titulo_endereco{
    font-size: 18px;
}
footer ._footer .nav-menu {
    border-left: 1px solid #FFF;
    font-size: 16px
}
footer ._footer .nav-contatos i {
    color: #FFF;
    margin-right: 5px;
    font-size: 20px;
    margin-left: 5px;
}
footer ._footer .nav-social a {
    border-radius: 12px;
    font-size: 26px;
    text-align: center;
    color: #FFF;
    padding: 0 5px;
}
footer ._footer .nav-social a:hover {
    color: var(--principal);
}
footer ._footer .nav-whatsapp .btn-whatsapp {
    border: 1px solid #FFF;
    border-radius: 200px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    color: #FFF;
    padding: 5px 15px 5px 4px;
    display: flex;
    align-items: center; 
}
footer ._footer .nav-whatsapp .btn-whatsapp i {
    border-radius: 200px;
    width: 40px;
    height: 40px;
    background-color: #FFF;
    color: var(--secundaria);
    font-size: 30px;
    padding-top: 4px;
    margin-right: 5px
}
footer ._copyright {
    font-size: 12px
}

.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:991px) {
    header {
        /* full banner */
        padding-top: var(--header-altura);
        position: absolute !important;

        /* banner separado 
        position: static !important*/
    }
    header .container {
        background: rgba(255,255,255,1);
    }
    /* Affix */
    header.scrolled .container ._logo img {
        max-width: 100%;
    } 
    footer ._footer .nav-menu {
        border-left: 0px none;
    }
    footer ._footer .nav-atendimento {
        border-left: 0px none;
    }
    footer ._footer .nav-atendimento a {
        min-height: 34px;
        font-size: 16px
    }
    footer ._footer .nav-social a {
        border: 1px solid #FFF;
        border-radius: 10px;
        font-size: 24px;
        width: 45px;
        height: 45px;
        padding: 3px 0px 0px;
        text-align: center;
    }
    footer ._footer .nav-social a:hover {
        color: var(--principal);
        background-color: #FFF;
    }
}