@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap');


*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Eurostile, 'Poppins', sans-serif;
    letter-spacing: 2px;
    font-weight: 400;
}

h1, h2, h3, h4 {
  font-weight: 600;
}

p {
  margin-bottom: 20px;
}

:root {
    --bs-primary: #05893e;
    --bs-secondary: #95c53a !important;
    --bs-success: #198754 !important;
    --bs-info: #3592a5 !important;
    --bs-warning: #EC9222 !important;
    --bs-danger: #dc3545 !important;
    --bs-light: #f8f9fa !important;
    --bs-clear: #888888;
    --bs-dark: #222 !important;
}

.tx-primary {color: var(--bs-primary)}
.tx-warning {color: var(--bs-warning)}
.tx-dark {color: var(--bs-dark)}
.tx-light {color: var(--bs-light)}
.tx-clear {color: var(--bs-clear)}

html, body {  
  /*height: 100vh; 
  overflow-x: hidden;*/
  scroll-behavior: smooth;
}
body {
  max-width: 100vw;
  font-weight: 600;
  padding: 0px;
  margin: 0px;
  font-family: 'Poppins', sans-serif;

  scroll-behavior: smooth; /* Faz o scroll deslizar suave ao navegar por links internos da página */
}

/** FORMULÁRIOS **/
form {
  width: 100%;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
form div {
  margin: 4px 0px;
  width: 100%;
}
.form-label {
  width: 100%;
}
.form-control {
  width: 100%;
  border: 1px solid rgb(172, 171, 171);
  border-radius: 8px;
  padding: 7px;
}


.flex-center-row {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-center-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


/** PAGINAS **/
main {
  background-color: white;
  height: 100%;  
  margin: 0px;
  padding: 0px;
}

main header {
  min-height: 110px;
  background: var(--bs-primary);
  background: -moz-linear-gradient(0deg, var(--bs-secondary) 0%, var(--bs-primary) 100%);
  background: -webkit-linear-gradient(0deg, var(--bs-secondary) 0%, var(--bs-primary) 100%);
  background: linear-gradient(0deg, var(--bs-secondary) 0%, var(--bs-primary) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#95c53a",endColorstr="#05893e",GradientType=1);

}
main header .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 0px;
  height: 100%;
  color: white;
}
/** FIM - PAGINAS **/

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--bs-primary);
}
a:hover {
  color: var(--bs-warning);
}

.stop-scrolling {
  overflow: hidden;
}

/** MENU PRINCIPAL - TOPO **/
.nav-menu-topo {
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 200;
    padding: 0px 10px 0px 5px;    
}
.nav-menu-topo > img {
    width: 220px;
}
.nav-menu-topo ul {
    margin: 0px;
}
.nav-menu-topo li {
    display: inline-block;
    margin-left: 20px;
}
.nav-menu-topo li a {
    color: #000;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 14px;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}
.nav-menu-topo li a:hover {
  color: var(--bs-warning);
  border-bottom: 1px solid var(--bs-warning);
}
.nav-menu-topo .box-open-menu-mobile {
  display: none;
  visibility: hidden;
}


/** FIM - MENU PRINCIPAL - TOPO **/


/** MENU MODO MOBILE **/
.nav-bg-menu-principal-mobile {
  display: none;
  position: fixed;
  background: #fff;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1000;
}
.nav-bg-menu-principal-mobile .menu-princ-modal-content { 
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  letter-spacing: 5px;
}
.nav-bg-menu-principal-mobile .menu-princ-modal-content ul li{
  margin: 20px 10px;
}
.nav-bg-menu-principal-mobile .menu-princ-modal-content ul li > a{
  padding: 5px 10px;
  text-transform: uppercase;
  font-size: 20px;
}
/** FIM - MENU MODO MOBILE **/

.bg-modal {
    position: fixed;
    background: #000;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    opacity: .9;
    z-index: 10;
}


.btnCloseModal {
    position: absolute;
    right: 15px;
    top: 5px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}

.text-center {
  text-align: center;
}

.btn {
  padding: 5px 10px;
  color: white;
  background-color: var(--bs-primary);
  border: none;
  border-radius: 8px;
  padding: 7px;
}
.btn-block {
  width: 100%;
}
.btn-secondary {
  color: white;
  background-color: var(--bs-secondary);
}
.btn-success {
  color: white;
  background-color: var(--bs-success);
}
.btn-info {
  color: white;
  background-color: var(--bs-info);
}
.btn-warning {
  color: white;
  background-color: var(--bs-warning);
}
.btn-danger {
  color: white;
  background-color: var(--bs-danger);
}


.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;  
  padding: 0px 12px;
}
.container-fluid {
  width: 100%;  
  padding: 0px;
  margin: 0px;
}




/** BREADCRUMB **/
.breadcrumb {
  display: none;
  visibility: hidden;
}
.breadcrumb ul li{
  display: inline;
  font-size: 14px;
  font-weight: 400;
}
.breadcrumb ul li a {
  color: var(--bs-light);
}
.breadcrumb ul li a:hover {
  color: var(--bs-warning)!important;
}
/** FIM - BREADCRUMB **/








/** MOBILE **/
@media only screen and (max-width: 768px){
  /** MENU PRINCIPAL - TOPO **/
  .nav-menu-topo ul{
    display: none;
    visibility: hidden;
  }
  .nav-menu-topo .box-open-menu-mobile {
    visibility: visible;
    display: flex;
    align-items: center;
  }
  /** FIM - MENU PRINCIPAL - TOPO **/
  
  .breadcrumb {
    display: none;
    visibility: hidden;
  }
}
/** FIM - MOBILE **/



/** TABLET **/
@media only screen and (max-width: 992px){
  /** MENU PRINCIPAL - TOPO **/
  .nav-menu-topo ul{
    display: none;
    visibility: hidden;
  }
  .nav-menu-topo .box-open-menu-mobile {
    visibility: visible;
    display: flex;
    align-items: center;
  }
  /** FIM - MENU PRINCIPAL - TOPO **/
}




  /** ANIMATION *************************/
  .fadeOut {
    opacity: 0;
    animation: fadeOut 1s .2s linear forwards;
  }
  @keyframes fadeOut {
    to {
        opacity: 1;
    }
  }

  .fadeIn {
    opacity: 0;
    animation: fadeIn 1s .2s linear forwards;
  }
  @keyframes fadeIn {
    to {
        opacity: 1;
    }
  }

  @keyframes translateZero {
      to {
          transform: translate(0);
          opacity: 1;
      }
  }

  
  .pulsate-bck-light {
    -webkit-animation: pulsate-bck 3.5s ease-in-out infinite both;
    animation:         pulsate-bck 3.5s ease-in-out infinite both;
  }

  .pulsate-bck {
    -webkit-animation: pulsate-bck 0.5s ease-in-out infinite both;
    animation:         pulsate-bck 0.5s ease-in-out infinite both;
  }
  /* ----------------------------------------------
   * Generated by Animista on 2022-7-20 21:7:5
   * Licensed under FreeBSD License.
   * See http://animista.net/license for more info. 
   * w: http://animista.net, t: @cssanimista
   * ---------------------------------------------- */
  
  /**
   * ----------------------------------------
   * animation pulsate-bck
   * ----------------------------------------
   */
   @-webkit-keyframes pulsate-bck {
      0% {
        -webkit-transform: scale(1);
                transform: scale(1);
      }
      50% {
        -webkit-transform: scale(0.9);
                transform: scale(0.9);
      }
      100% {
        -webkit-transform: scale(1);
                transform: scale(1);
      }
    }
    @keyframes pulsate-bck {
      0% {
        -webkit-transform: scale(1);
                transform: scale(1);
      }
      50% {
        -webkit-transform: scale(0.9);
                transform: scale(0.9);
      }
      100% {
        -webkit-transform: scale(1);
                transform: scale(1);
      }
    }

 .slide-in-bck-bottom {
	-webkit-animation: slide-in-bck-bottom 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: slide-in-bck-bottom 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
 }
 /* ----------------------------------------------
 * Generated by Animista on 2022-7-25 0:5:32
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-bck-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bck-bottom {
    0% {
      -webkit-transform: translateZ(700px) translateY(300px);
              transform: translateZ(700px) translateY(300px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0) translateY(0);
              transform: translateZ(0) translateY(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-bck-bottom {
    0% {
      -webkit-transform: translateZ(700px) translateY(300px);
              transform: translateZ(700px) translateY(300px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0) translateY(0);
              transform: translateZ(0) translateY(0);
      opacity: 1;
    }
  }


 
  .slide-in-left {
    -webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }
  .slide-out-left {
    -webkit-animation: slide-out-left 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
            animation: slide-out-left 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  }
  /* ----------------------------------------------
 * Generated by Animista on 2022-7-26 0:28:43
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* ----------------------------------------------
 * Generated by Animista on 2022-8-1 21:36:59
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-out-left
 * ----------------------------------------
 */
 @-webkit-keyframes slide-out-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
}
@keyframes slide-out-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
}




.fade-in-top {
	-webkit-animation: fade-in-top 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in-top 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2022-7-25 1:54:59
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in-top
 * ----------------------------------------
 */
 @-webkit-keyframes fade-in-top {
    0% {
      -webkit-transform: translateY(-50px);
              transform: translateY(-50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes fade-in-top {
    0% {
      -webkit-transform: translateY(-50px);
              transform: translateY(-50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
  


  .fade-out-fwd {
    -webkit-animation: fade-out-fwd 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: fade-out-fwd 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }
/* ----------------------------------------------
 * Generated by Animista on 2022-8-2 22:46:23
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-out-fwd
 * ----------------------------------------
 */
 @-webkit-keyframes fade-out-fwd {
  0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(80px);
            transform: translateZ(80px);
    opacity: 0;
  }
}
@keyframes fade-out-fwd {
  0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(80px);
            transform: translateZ(80px);
    opacity: 0;
  }
}







  .flip-in-hor-top {
	-webkit-animation: flip-in-hor-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: flip-in-hor-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2022-7-25 13:46:36
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation flip-in-hor-top
 * ----------------------------------------
 */
 @-webkit-keyframes flip-in-hor-top {
    0% {
      -webkit-transform: rotateX(-80deg);
              transform: rotateX(-80deg);
      opacity: 0;
    }
    100% {
      -webkit-transform: rotateX(0);
              transform: rotateX(0);
      opacity: 1;
    }
  }
  @keyframes flip-in-hor-top {
    0% {
      -webkit-transform: rotateX(-80deg);
              transform: rotateX(-80deg);
      opacity: 0;
    }
    100% {
      -webkit-transform: rotateX(0);
              transform: rotateX(0);
      opacity: 1;
    }
  }
  

  .flip-out-hor-bottom {
	-webkit-animation: flip-out-hor-bottom 0.45s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: flip-out-hor-bottom 0.45s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2022-7-25 13:48:53
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation flip-out-hor-bottom
 * ----------------------------------------
 */
@-webkit-keyframes flip-out-hor-bottom {
  0% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateX(-70deg);
            transform: rotateX(-70deg);
    opacity: 0;
  }
}
@keyframes flip-out-hor-bottom {
  0% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateX(-70deg);
            transform: rotateX(-70deg);
    opacity: 0;
  }
}


.slide-in-elliptic-left-fwd {
	-webkit-animation: slide-in-elliptic-left-fwd 0.7s .9s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-elliptic-left-fwd 0.7s .6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2022-7-28 2:35:46
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * @animation slide-in-elliptic-left-fwd 
 * ----------------------------------------
 */
 @-webkit-keyframes slide-in-elliptic-left-fwd {
  0% {
    -webkit-transform: translateX(-800px) rotateY(30deg) scale(0);
            transform: translateX(-800px) rotateY(30deg) scale(0);
    -webkit-transform-origin: -100% 50%;
            transform-origin: -100% 50%;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) rotateY(0) scale(1);
            transform: translateX(0) rotateY(0) scale(1);
    -webkit-transform-origin: 1800px 50%;
            transform-origin: 1800px 50%;
    opacity: 1;
  }
}
@keyframes slide-in-elliptic-left-fwd {
  0% {
    -webkit-transform: translateX(-800px) rotateY(30deg) scale(0);
            transform: translateX(-800px) rotateY(30deg) scale(0);
    -webkit-transform-origin: -100% 50%;
            transform-origin: -100% 50%;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) rotateY(0) scale(1);
            transform: translateX(0) rotateY(0) scale(1);
    -webkit-transform-origin: 1800px 50%;
            transform-origin: 1800px 50%;
    opacity: 1;
  }
}


.focus-in-expand {
	-webkit-animation: focus-in-expand 1.2s .5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: focus-in-expand 1.2s .5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2022-7-28 2:38:57
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation focus-in-expand
 * ----------------------------------------
 */
 @-webkit-keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
