@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;700&display=swap");
:root {
  --black: #000000;
  --black-1: #101010;
  --white: #ffffff;
  --green: #00945c;
  --grey: #999999;
  --default-fontsize: 0.93rem;
  --default-radius: 0.2rem;
  --circle-radius: 2rem;
  --default-border: 1px solid #ffffff;
  --default-transition: 0.3s all ease;
  --default-btnshadow: 0 0 0 0.22rem rgba(0, 148, 92, 0.3);
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Nunito", sans-serif;
  outline: none;
}

p,
li,
span,
label,
input,
select,
textarea {
  font-size: var(--default-fontsize);
  color: var(--white);
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  color: var(--white);
  line-height: 1.7;
  font-weight: 700;
}

h1 {
  font-size: 1.6rem;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1rem;
}

h4 {
  font-size: 0.9rem;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  font-size: var(--default-fontsize);
  cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  cursor: pointer;
}

label {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.5rem;
}

hr {
  border: 0;
  border-top: var(--default-border);
  margin: 1.5rem 0;
}

.bg-black {
  background: var(--black) !important;
}

.bg-black-1 {
  background: var(--black-1) !important;
}

.bg-white {
  background: var(--white) !important;
}

.bg-green {
  background: var(--green) !important;
}

.bg-grey {
  background: var(--grey) !important;
}

.form-control {
  border: var(--default-border);
  padding: 15px;
  background: var(--black);
  width: 100%;
  border-radius: var(--default-radius);
  -webkit-transition: var(--default-transition);
  transition: var(--default-transition);
}

.form-control:focus {
  border: 1px solid var(--green);
}

.form-control::-webkit-input-placeholder {
  color: var(--grey);
}

.form-control:-ms-input-placeholder {
  color: var(--grey);
}

.form-control::-ms-input-placeholder {
  color: var(--grey);
}

.form-control::placeholder {
  color: var(--grey);
}

@media screen and (max-width: 991px) {
  .form-control {
    padding: 0.625rem 0.75rem;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-check {
  display: block;
  padding-left: 3px;
  margin-bottom: 1.5rem;
}

.form-check label {
  margin-left: 10px;
  cursor: pointer;
  font-weight: 400;
}

.input-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.input-icon input {
  padding-right: 35px;
}

.input-icon svg {
  position: absolute;
  right: 15px;
  cursor: pointer;
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media screen and (min-width: 1200px) {
  .container {
    padding-left: 10%;
    padding-right: 10%;
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 1200px) {
  .col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-j-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-j-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-j-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-j-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-j-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex-j-evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.flex-a-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-a-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-a-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.margin-0 {
  margin: 0;
}

.margin-x-5 {
  margin: 0 5px;
}

.margin-x-10 {
  margin: 0 10px;
}

.margin-x-15 {
  margin: 0 15px;
}

.margin-x-20 {
  margin: 0 20px;
}

.margin-y-5 {
  margin: 5px 0;
}

.margin-y-10 {
  margin: 10px 0;
}

.margin-y-15 {
  margin: 15px 0;
}

.margin-y-20 {
  margin: 20px 0;
}

.margin-t-5 {
  margin-top: 5px;
}

.margin-t-10 {
  margin-top: 10px;
}

.margin-t-15 {
  margin-top: 15px;
}

.margin-t-20 {
  margin-top: 20px;
}

.margin-b-5 {
  margin-bottom: 5px;
}

.margin-b-10 {
  margin-bottom: 10px;
}

.margin-b-15 {
  margin-bottom: 15px;
}

.margin-b-20 {
  margin-bottom: 20px;
}

.padding-0 {
  padding: 0;
}

.padding-x-5 {
  padding: 0 5px;
}

.padding-x-10 {
  padding: 0 10px;
}

.padding-x-15 {
  padding: 0 15px;
}

.padding-x-20 {
  padding: 0 20px;
}

.padding-y-5 {
  padding: 5px 0;
}

.padding-y-10 {
  padding: 10px 0;
}

.padding-y-15 {
  padding: 15px 0;
}

.padding-y-20 {
  padding: 20px 0;
}

.padding-t-5 {
  padding-top: 5px;
}

.padding-t-10 {
  padding-top: 10px;
}

.padding-t-15 {
  padding-top: 15px;
}

.padding-t-20 {
  padding-top: 20px;
}

.padding-b-5 {
  padding-bottom: 5px;
}

.padding-b-10 {
  padding-bottom: 10px;
}

.padding-b-15 {
  padding-bottom: 15px;
}

.padding-b-20 {
  padding-bottom: 20px;
}

.show {
  opacity: 1 !important;
  display: block !important;
  visibility: visible !important;
}

.hide {
  opacity: 0 !important;
  display: none !important;
  visibility: hidden !important;
}

.btn {
  padding: 0.9rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--circle-radius);
  cursor: pointer;
  white-space: nowrap;
  font-size: var(--default-fontsize);
  font-weight: 700;
  -webkit-transition: var(--default-transition);
  transition: var(--default-transition);
  text-align: center;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .btn {
    padding: 12px 15px;
  }
}

.btn-block {
  width: 100%;
  display: block;
}

.btn-sm {
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
}

.btn-xs {
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
}

.btn-primary {
  background-color: var(--green);
  color: var(--white);
}

.btn-primary:focus {
  -webkit-box-shadow: var(--default-btnshadow);
          box-shadow: var(--default-btnshadow);
  border-color: var(--green);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--secondary-color);
  border-color: transparent;
}

.btn-secondary:focus {
  -webkit-box-shadow: var(--default-btnshadow);
          box-shadow: var(--default-btnshadow);
  border-color: transparent;
}

.basic-link {
  color: var(--white);
  line-height: 1.5;
}

.basic-link:active, .basic-link:hover, .basic-link:focus {
  color: var(--white);
  text-decoration: underline;
}

.circle-img {
  border-radius: 50%;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
}

.table {
  width: 100%;
  background-color: transparent;
  border-collapse: collapse;
}

.table th,
.table td {
  text-align: left;
  font-size: 0.85rem;
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
  color: var(--text-color);
}

.table thead tr th {
  font-weight: 700;
}

.table tbody tr td {
  border-top: var(--default-border);
}

.table-striped tbody tr:nth-of-type(odd) {
  background: var(--default-lista-hover);
}

.table-condensed th,
.table-condensed td {
  font-size: 0.75rem;
}

.table-condensed td,
.table-condensed th {
  padding: 0.65rem 1.2rem;
}

.bold {
  font-weight: 700;
}

.light {
  font-weight: 300;
}

.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}

.modal-backdrop {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--white);
  position: relative;
  width: 98%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-box-shadow: 0 1px 9px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 9px rgba(0, 0, 0, 0.3);
  border-radius: var(--default-radius);
  z-index: 101;
}

@media screen and (min-width: 768px) {
  .modal-body {
    width: 600px;
  }
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}

.modal-header h3 {
  font-size: 1.1rem;
}

.btn-modal-close {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--grey);
  cursor: pointer;
}

.modal-content {
  padding: 1rem;
}

.logo {
  z-index: 2;
}

.logo img {
  width: 150px;
  height: auto;
}

body {
  background-color: var(--black);
}

header {
  position: relative;
  height: 100vh;
  width: 100%;
}

.banner-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  position: absolute;
}

.banner-bg:after {
  content: "";
  background: var(--black);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.1;
}

.fadeIn {
  -webkit-animation: fadeIn ease 1s forwards;
          animation: fadeIn ease 1s forwards;
}

.fadeInModal {
  -webkit-animation: fadeIn ease 0.2s forwards;
          animation: fadeIn ease 0.2s forwards;
}

.fadeOut {
  -webkit-animation: fadeOut ease 1s forwards;
          animation: fadeOut ease 1s forwards;
}

.fadeOutModal {
  -webkit-animation: fadeOut ease 0.2s forwards;
          animation: fadeOut ease 0.2s forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#contato {
  padding: 60px 0;
}

.logo-footer {
  width: 130px;
  height: auto;
}

.icon-footer {
  width: 20px;
  height: auto;
}

.copyright {
  background: var(--green);
  margin-top: 100px;
}

.copyright p {
  font-size: 0.85rem;
}

.df-item {
  margin: 0.4rem;
}

.df-item a img {
  width: 20px;
  margin-right: 0.4rem;
}

.loading {
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
}

.loading img {
  width: 50px;
  -webkit-animation: pulse 1.3s infinite;
          animation: pulse 1.3s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*# sourceMappingURL=style.css.map */