:root {
    --principal: #5e16eb;
    --secundaria: #F2F2F2;
    --terciaria: #15c95c;
    --botao: #000;
    --highlight: #9369e7;
    --texto: #000000;
}

@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,
html {
    height: 100%;
}

body {
    background: white;
    font-family: "Sora", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 300;
    color: var(--texto);
    overflow-x: hidden;
}

.anchor {
  scroll-margin-top: 160px; /* ajuste conforme o tamanho do seu header */
}

h1 {
    letter-spacing: -2px;
}

a {
    color: var(--principal);
}
a:focus {
    color: #828282
}

/* Top */
header {
    position: relative;
    z-index: 3;
}
header ._navmenu .btn-whatsapp i {
   font-size: 24px;
    position: absolute;
    right: 5px;
}
header ._navmenu .nav-item {
    padding: 0 20px;
    position: relative;
}
header ._navmenu .nav-link {
    padding: 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    overflow: hidden
}
header ._navmenu .nav-link:hover {
    color: var(--principal)
}
header ._navmenu .icone {
    padding-right: 22px
}
header ._navmenu .nav-link.show {
    color: var(--highlight)
}
header ._navmenu .dropdown-menu {
    background-color: #f5f5f5;
    border-radius: 0px;
    border: 0px none;
    padding-top: 0px;
    padding-bottom: 0px;
    top: 28px !important;
}
header ._navmenu .dropdown-item {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 50px;
}
header ._navmenu .nav-item.dropdown .dropdown-item:active,
header ._navmenu .nav-item.dropdown .dropdown-item:hover {
    color: var(--principal);
}
header ._navmenu .btn-whatsapp {
    background-color: #19c259;
    color: #FFF;
    border-radius: 20px !important;
    padding-left: 10px;
    padding-right: 22px;
    min-width: 10px;
}

/* Affix default */
header ._logo ._affix {
    display: none !important;
}
/* Affix habilitado */
header .affix-on {
    position: fixed !important;
    z-index: 5;
    background-color: rgb(245, 245, 245);

    animation: slideDown 0.5s ease-out forwards;
}
header .affix-off {
    animation: fadeIn 1s ease-in forwards;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}
header .affix-on ._logo img {
    display: none;
    width: 160px
}
header .affix-on ._logo ._affix {
    display: block !important;
}
header .affix-on ._header_nav {
    justify-content: center;
}
header .affix-on ._header_nav > .row {
    padding-top: 0 !important;
}
header .affix-on .nav-link {
    color: #000 !important
}
header .affix-on .nav-link:hover {
    color: var(--principal) !important
}
header .affix-on ._navmenu .dropdown-menu {
    top: 18px !important
}

/* Footer */
footer {
    font-size: 15px;
}
footer ._footer {
    background: #01782E;
    background: linear-gradient(90deg,rgba(1, 120, 46, 1) 0%, rgba(33, 202, 99, 1) 100%);
    color: #FFF;
}
footer ._footer small {
    font-size: 11px
}
footer ._footer .informacoes {
    font-weight: 700;
    font-size: 16px;
}
footer ._footer .politica {
    color: #FFF !important;
    text-decoration: none;
}
footer ._footer ._telefones {
    color: var(--highlight)
}
footer ._footer ._navmenu_social a {
    color: #FFF;
    font-size: 36px;
    padding: 5px 10px;
}
footer ._footer ._navmenu_social a:hover {
    color: var(--highlight)
}

.float_whatsapp {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 50px;
    right: 15px;
    border: 2px solid #e3e3e3;
    background-color: var(--terciaria);
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
    z-index: 999;
}

.my-float_whatsapp {
    margin-top: 10px;
    color: #FFF;
}

@media(max-width:767px) {
    header {
        display: none !important;
    }
    header ._logo {
        text-align: center;
    }
    header ._logo img {
        max-width: 200px;
        margin: 0 auto
    }
    ._footer_info ._logo img {
        max-width: 100px;
    }
}
@media(max-width:1200px) {
  
}