@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;700&display=swap');
/**
* font-family: 'Raleway', sans-serif;
*/

:root {
    --color-font-light: #ffffff;
    --color-font-dark: #202020;

    --color-primary: #de6700;
    --color-secondary: #e0b101;
    --color-tertiary: #e4c862;

    /*obs: utilizar cores com tonalidades diferentes das cores acima*/
    --color-primary-hover: #e0b101;
    --color-secondary-hover: #de6700;
    --color-tertiary-hover: #de6700;


    --color-span-artigo: #202020;
    --color-box-depoimento: #FFF;
}

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

html,
body {
    overflow: auto !important;
    overflow-x: hidden!important;
    scroll-behavior: smooth;
}

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

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

h2 {
    background: linear-gradient(to bottom right, #CF6726 0%, #CF9C1A 50%, #CF6726 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.img-fluid {
    transition: .3s ease-in-out;
}

.img-fluid:hover {
    transform: scale(1.02);
}

input:focus,
input:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
    border-color: var(--color-secondary) !important;
    box-shadow: 0 0 0 0.2rem rgba(207, 41, 44, .25) !important;
}

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

span.invalid-feedback {
    display: block !important;
    color: red !important;
    font-weight: 500;
}

/*Jquery Validade Message*/



/* 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 {
    border: none;
    outline: none;
    font-weight: 600;
    padding: 8px 22px !important;
    color: var(--color-font-light) !important;
    background: var(--color-secondary-hover) !important;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    transition: .3s ease-in-out;
    text-shadow: rgb(0, 0, 0) 5px 5px 9px;
}

.btn:before {
    content: '';
    background: linear-gradient(45deg, #de6700, #e0b101, #de6700, #e0b101, #de6700, #e0b101, #de6700, #e0b101, #de6700);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.btn:active {
    color: #000
}

.btn:hover:before {
    opacity: 1;
}

.btn:after {
    z-index: -1;
    /*content: '';*/
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-secondary-hover);
    left: 0;
    top: 0;
    border-radius: 10px;
    transition: background 0.3s ease-in-out;
}

.btn:hover:after {
    background: transparent;

}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}


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

.btn_theme_secondary:hover {
    transition: .6s !important;
    background-color: var(--color-secondary-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;
}