@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: #1c1946;

    --color-primary: #b38b44 ;
    --color-secondary: #e4e4e4;
     
    --color-primary-hover: #b38b44 ;
    --color-secondary-hover: #d3d1d1;  

    --color-header: #b38b44 ;
    --color-bg-plano: #fafafa;
}

* {
    font-family: 'Roboto', sans-serif;
    color: var(--color-font-light);
}
html, body { overflow: auto!important; scroll-behavior: smooth; background-color: #1c1946; }
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: 2rem !important;
    padding: 8px 22px !important;
    color: var(--color-font-light) !important;
    background-color: var(--color-primary) !important;
}

.btn_theme_secondary {
    border-radius: 6px !important;
    border: 2px solid var(--color-primary);
    padding: 8px 22px !important;
    color: var(--color-font-light) !important;
    background-color: var(--color-font-dark) !important;
}

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




/* 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 { padding: 5rem 0 2rem; }
.title_section h2 {
    font-weight: 600;
    font-size: 3rem;
    margin-left: 115px;
    line-height: initial;
    color: var(--color-bg-plano);
    margin: 0 auto;
    text-align: center;
    padding-bottom: 1%;
    width: 70%;
    font-family: 'Font Awesome 5 Brands';
}

@media(max-width:991px) {
    .title_section h2 {
        font-size: 2rem;
        width: 90%;
    }
    .title_section h2 br { display: none; }
}
@media(max-width:767px) {
}
@media(max-width:549px) {
    .title_section::before { width: 70px; }
}