/*--------------------------------------------------------------
# Variáveis e Fonts
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

:root {
    --primary-color: #e78137;
    --primary-color-hover: #b77342;
    --secondary-color: #18171c;
    --tertiary-color: #484554;
    --white-color: #ffffff;
    --gray-color: #adA9bb;
    --gray-bg-color: #f8f8f8;
    --header-font: 'Rubik', sans-serif;
    --primary-font: 'Roboto Condensed', sans-serif;
    --normal-font-size: 1rem;
}

/*--------------------------------------------------------------
# Geral
--------------------------------------------------------------*/
html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: var(--primary-font);
    color: #444444;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

    a:hover {
        color: var(--primary-color);
        text-decoration: none;
    }

h1, h2, h3, h4, h5 {
    font-family: var(--header-font);
}

/*--------------------------------------------------------------
# Botões em Geral
--------------------------------------------------------------*/
.btn {
    font-family: var(--header-font);
    font-weight: 500;
    text-transform: uppercase;
}

    .btn i {
        font-size: 1.1rem;
        vertical-align: text-bottom;
    }

.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: .5s;
}

    .btn-primary:hover {
        color: #fff;
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }

    .btn-check:focus + .btn-primary, .btn-primary:focus {
        color: #fff;
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem rgb(231 129 55 / 50%);
    }

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
    .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus, .btn-outline-primary:active, .btn-outline-primary:focus-visible {
        box-shadow: 0 0 0 0.25rem rgb(231 129 55 / 50%);
    }

/*--------------------------------------------------------------
# Botão - Back to top
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 996;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: var(--secondary-color);
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Language Switcher
--------------------------------------------------------------*/
.lang-switcher img {
    max-height: 22px;
    width: auto;
}

.navbar .dropdown.lang-switcher ul {
    width: auto;
}

.navbar .dropdown.lang-switcher ul li {
    min-width: auto;
}

    .navbar .dropdown.lang-switcher ul a {
        padding: 4px 12px;
    }

        .navbar .dropdown.lang-switcher ul a img:hover {
            opacity: 0.9;
        }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Sections em Geral
--------------------------------------------------------------*/
section {
    padding: 8rem 0;
    overflow: hidden;
}

    section .img-right {
        border-radius: 260px 260px 60px 260px;
        /* border: solid 2px var(--gray-color); */
        box-shadow: 4px 4px 18px var(--gray-color);
    }

    section .button-wrapper {
        margin-top: 2rem;
    }

.section-bg {
    background-color: #ffffff;
}

.section-2-bg {
    background: url("../assets/images/hero/placeholder3.jpg") center left;
    background-color: var(--primary-color);
    background-size: cover;
}

.section-title {
    padding-bottom: 1.875rem;
}

.section-title-center {
    padding-bottom: 1.875rem;
    text-align: center;
}

    /*
    * Pill style
    */
    /*.section-title h2 {
        font-size: 13px;
        letter-spacing: 1px;
        font-weight: 700;
        padding: 8px 20px;
        margin: 0;
        background: #e7f1fd;
        color: var(--primary-color);
        display: inline-block;
        text-transform: uppercase;
        border-radius: 50px;
    }*/

.section-title h6,
.section-title-center h6 {
    text-transform: uppercase;
    color: var(--gray-color);
    font-weight: 400;
}

.section-title h2,
.section-title-center h2 {
    margin: 0 0;
    font-size: 32px;
    font-weight: 700;
}

.section-title h3 span,
.section-title-center h3 span {
    color: var(--primary-color);
}

.section-title p,
.section-title-center p {
    margin: 15px auto 0 auto;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .section-title p,
    .section-title-center p {
        width: 50%;
    }
}

section a.rounded-pill {
    padding: 1rem 2rem;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #f1f6fe;
    min-height: 40px;
}

    .breadcrumbs h2 {
        font-size: 24px;
        font-weight: 300;
        margin: 0;
    }

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            color: #6c757d;
            content: "/";
        }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

/*--------------------------------------------------------------
# Barra do Topo
--------------------------------------------------------------*/
#topbar {
    background: var(--secondary-color);
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 0;
}

    #topbar .contact-info i {
        font-style: normal;
        color: #fff;
    }

        #topbar .contact-info i a, #topbar .contact-info i span {
            padding-left: 5px;
            color: #fff;
        }

        #topbar .contact-info i a {
            line-height: 0;
            transition: 0.3s;
            transition: 0.3s;
        }

            #topbar .contact-info i a:hover {
                color: #fff;
                text-decoration: underline;
            }

    #topbar .social-links a {
        color: rgba(255, 255, 255, 0.7);
        line-height: 0;
        transition: 0.3s;
        margin-left: 20px;
    }

        #topbar .social-links a:hover {
            color: white;
        }

/*--------------------------------------------------------------
# Cabeçalho
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    height: 86px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

    #header.fixed-top {
        height: 70px;
    }

    #header .logo {
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 600;
        letter-spacing: 0.8px;
        font-family: "Poppins", sans-serif;
    }

        #header .logo a {
            color: #222222;
        }

            #header .logo a span {
                color: var(--primary-color);
            }

        #header .logo img {
            max-height: 55px;
            transform: scale(1.01);
            transition: all 200ms;
        }
        #header.fixed-top .logo img {
            max-height: 46px;
        }

.scrolled-offset {
    margin-top: 70px;
}

.im-fixed-top {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    z-index: 996;
}

/*--------------------------------------------------------------
# Menu de Navegação
--------------------------------------------------------------*/
/**
* Navegação Desktop
*/
.navbar {
    padding: 0;
}

    .navbar a.btn {
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
    }

    .navbar a.rounded-pill {
        padding: .5rem 1rem;
        border-width: 2px;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar > ul > li {
        white-space: nowrap;
        font-family: var(--primary-font);
        text-transform: uppercase;
        padding: 10px 0 10px 28px;
    }

    .navbar a, .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-size: 16px;
        font-weight: 600;
        color: var(--secondary-color);
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

        .navbar a i, .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

    .navbar > ul > li > a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--primary-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
        visibility: visible;
        width: 100%;
    }

    .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
        color: var(--primary-color);
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 28px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

            .navbar .dropdown ul li.tm-conduct {
                border-top: 1px solid #e9e9e9;
                margin-top: 10px;
                padding-top: 10px;
            }

            .navbar .dropdown ul li.tm-credentials {
                border-top: 1px solid #e9e9e9;
                padding-top: 10px;
            }

            .navbar .dropdown ul a {
                padding: 10px 20px;
                font-weight: 400;
                font-family: var(--primary-font);
                text-transform: none;
            }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
                color: var(--primary-color);
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
    .navbar a.btn-outline-primary {
        color: var(--primary-color);
    }
    .navbar a.btn-outline-primary:focus {
        padding: 0.5rem 1rem;
        border-width: 2px;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
    }
    .navbar a.btn-outline-primary:hover {
        text-decoration: none;
        color: #fff;
    }
    .navbar > ul > li > a.btn-outline-primary:before {
        display:none;
    }

    @media (max-width: 1366px) {
        .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Navegação Mobile
*/
.mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a, .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #222222;
    }

    .navbar-mobile > ul > li {
        padding: 0;
    }

    .navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
        visibility: hidden;
    }

    .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
        color: var(--primary-color);
    }

    .navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
                color: var(--primary-color);
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

    .navbar-mobile .btn-outline-primary {
        width: fit-content;
        margin: 10px 20px;
    }

.nav-mobile .lang-switcher {
    width: fit-content;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #fff;
    padding: 0;
    color: #444444;
    font-size: 14px;
    background: #f1f6fe;
}

    #footer .footer-top {
        padding: 60px 0 30px 0;
        background: #282828;
    }

        #footer .footer-top .footer-logo-address {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-logo-address .footer-logo {
                margin-bottom: 1rem;
                border-bottom: solid 1px #eee;
                padding-bottom: 1rem;
                max-width: 230px;
            }

            #footer .footer-top .footer-logo-address .footer-logo img {
                width: 80%
            }

            #footer .footer-top .footer-logo-address h6 {
                margin-bottom: 0.75rem;
                color: #fff;
            }

            #footer .footer-top .footer-logo-address p {
                font-size: 0.9rem;
                line-height: 1.5rem;
                margin-bottom: 0;
                color: #fefefe;
            }

        #footer .footer-top .footer-contact {
            float: right;
            padding: 1rem;
            background-color: #333;
            border-radius: 10px;
            text-align: center;
        }

            #footer .footer-top .footer-contact h5 {
                font-size: 0.9rem;
                color: #a7a7a7;
            }

            #footer .footer-top .footer-contact .btn {
                font-size: 0.8rem;
                padding: 0.5rem 1rem;
            }

        #footer .footer-top .social-links a:last-child {
            margin-right: 0px;
        }

        #footer .footer-top h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            position: relative;
            padding-bottom: 0.75rem;
        }

        #footer .footer-top .footer-divider {
            padding: 0.25rem 0 0.75rem;
        }

            #footer .footer-top .footer-divider::after {
                content: "";
                display: block;
                height: 1px;
                width: 85%;
                background-color: #505050;
            }

        #footer .footer-top .footer-links {
            margin-bottom: 0.5rem;
        }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: var(--primary-color);
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 4px;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: var(--primary-color);
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #d5d5d5;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1.1;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        text-decoration: none;
                        color: var(--primary-color);
                    }

            #footer .footer-top .social-links a:hover {
                background: var(--secondary-color);
                color: #fff;
                text-decoration: none;
            }

    #footer .footer-bottom {
        /*background-color: var(--secondary-color);*/
        background-color: var(--primary-color);
    }

    #footer .footer-bottom .copyright {
        float: left;
        align-self: center;
        color: #fff;
    }

    #footer .footer-bottom .social-links {
        text-align: right;
    }

        #footer .footer-bottom .social-links a {
            font-size: 18px;
            display: inline-block;
            background: var(--primary-color);
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 4px;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-bottom .social-links a:hover {
                background: var(--secondary-color);
                color: #fff;
                text-decoration: none;
            }

    #footer .credits {
        float: right;
        text-align: center;
        font-size: 13px;
        color: #ffffff;
    }

@media (max-width: 768px) {
    #footer .copyright, #footer .credits {
        float: none;
        text-align: center;
        padding: 2px 0;
    }
}

/*--------------------------------------------------------------
# Valores
--------------------------------------------------------------*/

.vantagens .icon-box:hover .button-wrapper a {
    background-color: #fff;
    color: var(--primary-color);
}

    .vantagens .icon-box:hover .button-wrapper a:hover {
        background-color: var(--secondary-color);
        color: #fff;
    }

/*--------------------------------------------------------------
# Recaptcha position
--------------------------------------------------------------*/

.grecaptcha-badge {
    bottom: 100px !important;
}

/*--------------------------------------------------------------
# Cookie Consent
--------------------------------------------------------------*/

.cookieConsent {
    z-index: 998;
    position: fixed;
    display: flex;
    align-items: center;
    bottom: 1rem;
    width: 100%;
    border: 1px solid transparent;
}

    .cookieConsent p {
        margin-bottom: 0;
    }

    .cookieConsent .cookieContent {
        width: 70%;
        border: solid 1px #eee;
        margin: 0 auto;
        color: #333;
        background-color: #fff;
        padding: 2rem;
        box-shadow: 0px 7px 8px rgb(0 0 0 / 30%);
    }

        .cookieConsent .cookieContent .row .col-sm-2 {
            align-self: center;
            text-align: center;
        }

@media only screen and (max-width: 600px) {
    .cookieConsent .cookieContent .row .col-sm-2 {
        margin-top: 1rem;
    }
    .cookieConsent .cookieContent .row .col-sm-2 button {
        width: 100%;
    }
}