@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: #f3efef;
    --color-font-dark: #434343;

    --color-primary: #088AC4;
    --color-secondary: #72102C;
   
    /*obs: utilizar cores com tonalidades diferentes das cores acima*/
    --color-primary-hover: #c2740e;
    --color-secondary-hover: #FAB800;  

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

* { font-family: 'Roboto', sans-serif; color: var(--color-font-dark); }
h2 {
    background: #797979;
    background: linear-gradient(to bottom right, #797979 10%, #A5A5A5 25%, #DDDDDD 40%, #A5A5A5 50%, #DDDDDD 60%, #A5A5A5 75%, #797979 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}
html, body { overflow: auto!important; scroll-behavior: smooth; 
     background-image: url(../img/bg.jpg); 
     background-size: cover; 
     background-repeat: no-repeat; 
     background-attachment: fixed; 
     background-position: center center; 
    }
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*/

.img-fluid { transition: .3s ease-in-out; }
.img-fluid:hover { transform: scale(1.02); }


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

/* 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: 2rem 0; }
.title_section h2 { width:70%; font-weight: 600; font-size: 2.4rem; margin-left: 100px; line-height: 40px; position: relative; z-index: 2; }
.title_section::before {
  content: "";
  position: absolute;
  margin-top: -7px;
  width: 80% !important;
  height: 100px;
  background-color: #088ac494;
  border-radius: 0 0rem 0rem 0;
  clip-path: polygon(98% 0, 100% 50%, 98% 100%, 0% 100%, 0% 0%);
  z-index: 0;
}

@media(max-width:1100px) {
    .title_section h2 { font-size: 2.2rem; }
    .title_section h2 br { display: none; }
}
@media(max-width:800px) {
    .title_section h2 { font-size: 2rem;
      margin-left: 30px;
      width: 80%; }
      .title_section::before { height: 130px; }

}
@media(max-width:549px) {
    .title_section::before { height: 180px; }
    .title_section h2 { font-size: 1.8rem; margin-left: 85px;
      margin-left: 30px;
      width: 70%; }
}
@media(max-width:450px) {
  .title_section::before { height: 210px; }
}
@media(max-width:350px) {
  .title_section::before { height: 250px; }
}


/* botão */

@-webkit-keyframes topAnimation {
    from {
      transform: translate(0rem, 0);
    }
    to {
      transform: translate(0rem, 3.5rem);
    }
  }
  
  @keyframes topAnimation {
    from {
      transform: translate(0rem, 0);
    }
    to {
      transform: translate(0rem, 3.5rem);
    }
  }
  @-webkit-keyframes bottomAnimation {
    from {
      transform: translate(-11.5rem, 0);
    }
    to {
      transform: translate(0rem, 0);
    }
  }
  @keyframes bottomAnimation {
    from {
      transform: translate(-11.5rem, 0);
    }
    to {
      transform: translate(0rem, 0);
    }
  }
  a.btn {
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    border: 0;
    position: relative;
    letter-spacing: 0;
    margin: 0 auto;
    padding: 1rem;
    background: #00b5fd33;
    outline: none;
    font-size: 20px;
    color: white;
    transition: all 0.5s ease-in-out;
  }
  a.btn::after, a.btn::before {
    border: 0;
    content: "";
    position: absolute;
    height: 40%;
    width: 10%;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: -2;
    border-radius: 50%;
  }
  a.btn::before {
    border: 0;
    background-color: var(--color-secondary-hover);
    top: -0.75rem;
    left: 0.5rem;
    -webkit-animation: topAnimation 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.25s infinite alternate;
            animation: topAnimation 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.25s infinite alternate;
  }
  a.btn::after {
    background-color: var(--color-secondary);
    top: 3rem;
    left: 13rem;
    -webkit-animation: bottomAnimation 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s infinite alternate;
            animation: bottomAnimation 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s infinite alternate;
  }
  a.btn:hover {
    color: white;
    background: transparent;

  }
  a.btn:hover::before, a.btn:hover::after {
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 0;
    -webkit-animation: none;
            animation: none;
  }
  a.btn:hover::after {
    left: 0rem;
  }
  a.btn:hover::before {
    top: 0.5rem;
    left: 0.35rem;
  }

  /* BOTÃO */

  .button {
    color: var(--color);
    transition: 0.25s;
  }
  .button:hover, button:focus {
    border-color: var(--hover);
    color: #fff;
  }
  
  .button {
    background: none;
    border: 2px solid;
    font: inherit;
    line-height: 1;
    margin: 0.5em;
    padding: 1em 2em;
  }

  .offset {
    --color: #febb00;
    --hover: #72102C;
  }

  .offset {
    box-shadow: 0.3em 0.3em 0 0 var(--color), inset 0.3em 0.3em 0 0 var(--color);
  }
  .offset:hover, .offset:focus {
    box-shadow: 0 0 0 0 var(--hover), inset 6em 3.5em 0 0 var(--hover);
  }