@font-face {
    font-family: 'Axiforma';
    src: url('/fonts/Axiforma-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Axiforma';
    src: url('/fonts/Axiforma-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Axiforma';
    src: url('/fonts/Axiforma-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}


html {
    scroll-behavior: smooth;
}

.full{
    width: 100%;
}
.size{
    width: 86%;
}

body, html {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0px !important;
    font-family: 'Axiforma', sans-serif;
}

.gutter{
    max-width: 1600px;
    padding: 0px 32px;
    margin: auto;
    position: relative;
}

h1{
    font-size: 74px;
    font-family: 'Axiforma SemiBold', sans-serif;
    font-weight: 600;
    line-height: 120%;
    margin-block-start: 0em;
    margin-block-end: 0em;
}

h2{
    font-size: 60px;
    font-family: 'Axiforma', sans-serif;
    font-weight: 600;
    line-height: 120%;
}

h3{
    font-size: 48px;
    font-family: 'Axiforma', sans-serif;
    font-weight: 600;
    line-height: 120%;
}

h4{
    font-size: 38px;
    font-family: 'Axiforma', sans-serif;
    font-weight: 600;
    line-height: 120%;
}

h5{
    font-size: 30px;
    font-family: 'Axiforma', sans-serif;
    font-weight: 600;
    line-height: 120%;
}

h6{
    font-size: 24px;
    font-family: 'Axiforma', sans-serif;
    font-weight: 600;
    line-height: 120%;
}

:-webkit-any(article, aside, nav, section) h1, h2, h3, h4, h5, h6{
    margin-block-start: 0em;
    margin-block-end: 0em;
}

.light{
    color: white;
}

.main-red{
    color: #FF490C;
}
button{
    border-width: 0px;
}

a:-webkit-any-link {
    text-decoration: none;
}

p{
    margin-block-start: 0em;
    margin-block-end: 0em;
    font-size: 16px;
    font-family: 'Axiforma', sans-serif;
    line-height: 150%;
}

p.description-light{
    font-size: 14px;
    line-height: 100%;
    color: #6F6F71;
}

p.description-dark{
    font-size: 14px;
    line-height: 100%;
    color: #B8B8B8;
}

.right{
    text-align: end;
}

.slider-btn{
    border-radius: 16px;
    border: 1px solid #DADADA;
    background-color: #fff;
    padding: 16px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.slider-btn:hover{
    background: #DADADA;
    border-color: #C6C6C6;
}

.dark{
    color: #222222;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #FF490C; 
    border-radius: 8px; 
}

::-webkit-scrollbar-track {
    background: #222222;
}

.mobile, #mobile{
    display: none;
}

p.error-message {
    color: #FF0000;
    font-size: 10px;
    margin: 0;
    font-family: 'Axiforma', sans-serif;
    position: absolute;
    top: -16px;
    left: 16px;
}

.gray-50{
    color: #BDBDBD;
}

/* Mobile */
@media (max-width: 768px) {
    .gutter{
        padding: 0px 16px;
        margin: auto;
        position: relative;
    }

    .desktop{
        display: none;
    }

    .mobile, #mobile{
        display: block;
    }
    
    h1{
        font-size: 11vw;
        font-family: 'Axiforma', sans-serif;
        font-weight: 600;
        line-height: 120%;
        margin-block-start: 0em;
        margin-block-end: 0em;
    }
    
    h2{
        font-size: 38px;
        font-family: 'Axiforma', sans-serif;
        font-weight: 600;
        line-height: 110%;
    }
    
    h3{
        font-size: 30px;
        font-family: 'Axiforma', sans-serif;
        font-weight: 600;
        line-height: 110%;
    }
    
    h4{
        font-size: 24px;
        font-family: 'Axiforma', sans-serif;
        font-weight: 600;
        line-height: 110%;
    }
    
    h5{
        font-size: 20px;
        font-family: 'Axiforma', sans-serif;
        font-weight: 600;
        line-height: 110%;
    }
    
    h6{
        font-size: 18px;
        font-family: 'Axiforma', sans-serif;
        font-weight: 600;
        line-height: 110%;
    }

    p{
        margin-block-start: 0em;
        margin-block-end: 0em;
        font-size: 14px;
        font-family: 'Axiforma', sans-serif;
        line-height: 150%;
    }
}

/*Animações*/

@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(100px);
                transform: translateY(100px);
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
@keyframes slide-top {
    0% {
        -webkit-transform: translateY(100px);
                transform: translateY(100px);
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/*Remoção do chatbot*/

.nld-chatbot {
    display: none!important;
}/*  */