@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');
@import url('https://fonts.googleapis.com/css2?family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');
/**
* font-family: 'Roboto', sans-serif;
*/

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

  --color-primary: #b1c854;
  --color-secondary: #c7a887;

  /*obs: utilizar cores com tonalidades diferentes das cores acima*/
  --color-primary-hover: #c3e04f;
  --color-secondary-hover: #000000;

  --color-header: #ededed;
  --color-bg-plano: #000000;
}

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

html,
body {
  overflow: auto !important;
  scroll-behavior: smooth;
  background-position: right bottom;
  background: black;
  background-image: linear-gradient(to top, #000000bf, #000000ad, #000000bf), url(../img/bg_geral.webp);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

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;
}

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 {
  --hue: 190;
  position: relative;
  padding: 1rem 2rem;
  font-size: 1rem;
  line-height: 1.5;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #8BC34A;
  border: 1px solid #8BC34A;
  outline: transparent;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: 0.25s;
  font-weight: 600;
  margin: 0 auto;
}

.btn:hover {
  background: #8BC34A;
}

.btn-primary:hover {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-primary {
  --hue: 187;
}

.btn-ghost {
  color: var(--color-font-light)!important;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-ghost:hover {
  color: white;
}

.btn-shine {
  color: white;
}

.btn-shine::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, #8BC34A, transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}

.btn-shine:hover {
  background: transparent;
  box-shadow: 0 0 20px 10px #8BC34A;
}

.btn-shine:hover::before {
  transform: translateX(100%);
}

/* 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-font-dark);
  background-position: center;
}


/* TITULOS DOS BLOCOS */
.title_section {
  padding: 5rem 0 2rem;
}

.title_section h2 {
  font-weight: 600;
  font-size: 2.4rem;
  margin-left: 115px;
  line-height: 40px;
}

.title_section::before {
  content: "";
  border: 13px double white;
  position: absolute;
  margin-top: 6px;
  margin-left: 30px;
  width: 65px;
  height: 65px;
  background-color: var(--color-primary);
  border-radius: 4rem 4rem 4rem 4rem;
}

/* HOVER IMG */

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

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

@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: 2rem;
  }
}

@media(max-width:575px) {

  .title_section {
    padding: 2rem 0 1rem;
}

  .title_section::before {
    width: 70px;
  }

  .title_section h2 {
    font-size: 1.4rem;
    margin-left: 70px;
    line-height: 26px;
}

  .title_section::before {
    margin-left: 10px;
    width: 50px;
    height: 50px;
  }
}