@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;300;400;500;600;700&family=Raleway:wght@700&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,900&display=swap');
/**
* font-family: 'Roboto', sans-serif;
*/

:root {
    --color-font-light: #ffffff;
    --color-font-dark: #2d2d83;

    --color-primary: #2d2d83;
    --color-secondary: #2f9cdd;

    --color-primary-hover: #2f9cdd;
    --color-secondary-hover: #2d2d83;

    --color-header: #fff;
    --color-bg-plano: #fff;
}

* {
    font-family: 'Roboto', sans-serif;
    color: var(--color-font-dark);
}

html,
body {
    overflow: auto !important;
    scroll-behavior: smooth;
    background-color: #fff;
}

a {
    color: var(--color-font-dark);
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

input:focus,
input:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(246, 147, 18, .40) !important;
}

.grecaptcha-badge {
    display: none !important;
}


/* MENSAGEM ALERT AJAX e FLASHDATA */
.msg_flashdata {
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    max-width: 600px;
}

.msg_status {
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: -600px;
    max-width: 600px;
}

.msg_flashdata .alert,
.msg_status .alert {
    border-radius: 10px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.3rem;
}

.msg_flashdata .alert button span,
.msg_status .alert button span {
    font-size: 2.3rem;
}

@media(max-width:767px) {
    .msg_status {
        top: 0;
        right: 0;
        width: 100%;
    }
}



/* ESTILO DE BOTÕES DENTRO DO TEMA */
.btn_theme_primary {
    border-radius: 90px !important;
    padding: 8px 22px !important;
    background-color: var(--color-primary-hover);
    color: var(--color-bg-plano);
}

.btn_theme_primary_servicos {
    border-radius: 90px !important;
    padding: 10px 30px !important;
    color: var(--color-font-light) !important;
    border: 2px solid var(--color-primary-hover);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    float: left;
}

.btn_theme_secondary {
    border-radius: 90px !important;
    padding: 8px 22px !important;
    color: var(--color-font-light) !important;
    background-color: var(--color-primary-hover);
}

.btn_theme_primary:hover,
.btn_theme_secondary:hover {
    transition: .6s !important;
    background-color: var(--color-primary);
    color: var(--color-bg-plano);
}

/* PRELOADER SITE */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999999999999;
    background-image: url('../img/loader.svg');
    background-repeat: no-repeat;
    background-color: var(--color-primary);
    background-position: center;
}


/* TITULOS DOS BLOCOS */

.title_section h2 {
    font-weight: bold;
    font-size: 3.25rem;
    color: var(--color-font-dark);
    margin: 0 auto;
    text-align: center;
    padding-bottom: 2%;
}

@media(max-width:991px) {
    .title_section h2 {
        font-size: 2.2rem;
    }

    .title_section h2 br {
        display: none;
    }
}

@media(max-width:767px) {
    .title_section h2 {
        font-size: 2.1rem;
        line-height: 34px;
        width: 100%;
    }
}

@media(max-width:549px) {
    .title_section::before {
        width: 70px;
    }

    .title_section h2 {
        margin-left: 0px;
        margin: 0 auto;
        margin-bottom: 2rem !important;
    }

}