@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: #2b3e5c;

  --color-primary: #4474c0;
  --color-secondary: #61c6e3;

  /*obs: utilizar cores com tonalidades diferentes das cores acima*/
  --color-primary-hover: #61c6e3;
  --color-secondary-hover: #2b3e5c;
}

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

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

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

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

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

/*Jquery Validade Message*/

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

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

/* 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-21, .btn_theme_primary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  color: var(--color-font-light)!important;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  background: var(--color-primary)!important;
  padding: 1rem 2rem;
  overflow: hidden;
  border: none;
  margin-top: 2rem !important;
}

.btn-21:hover, .btn_theme_primary:hover {
  color: var(--color-font-dark) !important;
  background: var(--color-secondary)!important;
}

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

.btn_theme_primary i, .btn_theme_secondary i {
  color: var(--color-font-light) !important;
}

.btn_theme_tertiary {
  color: var(--color-primary);
  background: var(--color-primary);
  transition: all 0.3s;
  position: relative;
}

.btn_theme_tertiary span {
  transition: all 0.3s;
}

.btn_theme_tertiary::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  transform: scale(0.1, 1);

}

.btn_theme_tertiary:hover span {
  letter-spacing: 2px;
}

.btn_theme_tertiary:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.btn_theme_tertiary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.1);


}

.btn_theme_tertiary:hover::after {
  opacity: 0;
  transform: scale(0.1, 1);
}




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



/* BACKGORUND CURVAS SVG HEADER AND FOOTER */
.svg_header {
  position: absolute;
  top: -2px;
  width: 100%;
  z-index: 2;
}

.svg_header path {
  fill: #FFF;
}

.svg_footer {
  position: absolute;
  bottom: -25px;
  width: 100%;
  z-index: 2;
}

.svg_footer path {
  fill: #FFF;
}