:root {
    --principal: #282a6a;
    --secundaria: #3e4095;
    --terciaria: #01aef2;
    --destacar: #6553f5;
    --botao: #000;
    --highlight: #f1f5f9;
    --texto: #FFF;
    --texto2: #44444c;
    --titulo: #606070;
    --textosecundario: #FFF;

    --header-altura: 53px;
}

@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-family: 'Kumbh Sans';
    src: url('/assets/fonts/KumbhSans-Regular.woff2') format('woff2'),
        url('/assets/fonts/KumbhSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body,
html {
    height: 100%;
}

body {
    background: black;
    font-family: 'Kumbh Sans', 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 .container {
    position: relative;
    z-index: 99;
    background: rgba(255,255,255,.2);
    border-radius: 20px;

    -webkit-transition: all .2s ease 0s;
    -moz-transition: all .2s ease 0s;
    -o-transition: all .2s ease 0s;
}
/* Affix */
header.scrolled .container {
    background-color: rgba(0,0,0,.4);
}
header a,
header .nav-link {
    color: #FFF;
}
header .nav-link {
    border-radius: 10px;
    font-weight: bold;
    background: transparent;
    letter-spacing: 1px;
}
header .nav-link:hover {
    color: #FFF;    
    background: #7E42F3;
    background: linear-gradient(97deg, rgba(126, 66, 243, 1) 0%, rgba(63, 179, 228, 1) 100%);
}

/* Main */
section, .section {
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

/* Footer */
footer ._footer {
    background: #7E42F3;
    background: linear-gradient(97deg, rgba(126, 66, 243, 1) 0%, rgba(63, 179, 228, 1) 100%);
}
footer ._footer a {
    color: #FFF;
}
footer ._footer a:hover {
    color: #FFF;
    text-decoration: underline;
}
footer ._footer .nav-link {
    padding-top:  5px;
    padding-bottom: 5px
}
footer ._footer .nav-social a {
    border: 1px solid #FFF;
    border-radius: 10px;
    font-size: 20px;
    width: 35px;
    height: 35px;
    padding: 2px 0px 0px;
    text-align: center;
}
footer ._footer .nav-social a:hover {
    color: var(--principal);
    background-color: #FFF;
}
footer ._footer .btn-whatsapp {
    border: 1px solid #FFF;
    border-radius: 50px !important;
    font-size: 11px;
    padding: 3px 10px 3px 3px;
    display: inline-flex;
    align-items: center;
}
footer ._footer .btn-whatsapp i {
    font-size: 20px;
    background: #FFF;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 5px 0px 0px;
    margin-right: 6px;
    color: #5093e8
}
footer ._footer .btn-whatsapp:hover {
    background-color: #FFF;
    color: var(--principal);
    text-decoration: none;
}
footer ._footer .btn-whatsapp:hover i {
    color: var(--principal);
}
footer ._footer ._copyright {
    font-size: 11px
}

.float_whatsapp {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 50px;
    right: 15px;
    background: #7E42F3;
    background: linear-gradient(97deg, rgba(126, 66, 243, 1) 0%, rgba(63, 179, 228, 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-color: #128C7E;
}

@media(max-width:991px) {
    header {
        padding-top: var(--header-altura);
        position: absolute !important
    }
    header .container {
        background: rgba(255,255,255,.1);
    }
    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;
    }
}
@media(max-width:575px) {
  
}
@media(max-width:1200px) {
  
}