@import url("grid.css");
@import url("../lib/materialdesign/css/materialdesignicons.min.css");

.banner__footer--link {
  transition: ease-in-out .25s opacity;
}

.banner__footer--link:hover {
  opacity: 0.5;
}

@font-face {
  font-family: "Lato-Regular";
  src: url("../fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Lato-Black";
  src: url("../fonts/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

.header {
  margin-top: 3rem;
  padding: .2rem 0;
}

@media only screen and (min-width: 576px) {
  .header {
    margin-top: 4.875rem;
    display: flex;
    align-items: center;
  }
}

.header__brand {
  margin: 0;
  padding: 0;
  text-align: center;
}

.header__brand img {
  height: 2rem;
}

.header__title {
  margin-top: 1rem;
  text-align: center;
}

@media only screen and (min-width: 576px) {
  .header__title {
    margin-top: 0;
    margin-left: 2.25rem;
    text-align: left;
  }
}

.header__title h1 {
  font-size: 1.5rem;
  color: #707070;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Lato-Regular", sans-serif;
  color: black;
}

* {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 88rem;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.banner__body {
  display: flex;
  flex-direction: column-reverse;
}

@media only screen and (min-width: 576px) {
  .banner__body {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.banner__body--title h2 {
  font-size: 2rem;
  font-weight: normal;
  text-align: center;
  line-height: normal;
  text-transform: uppercase;
}

.banner__body--title h2 br {
  display: none;
}

.banner__body--title h2>strong {
  font-family: "Lato-Black", sans-serif;
}

@media only screen and (min-width: 576px) {
  .banner__body--title h2 {
    font-size: 2.5rem;
    text-align: left;
  }

  .banner__body--title h2 br {
    display: initial;
  }
}

.banner__body--figure {
  background-image: url("../img/Vector.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin: 1rem 0 0 0;
  padding: 2.25rem;
}

.banner__body--figure img {
  width: 100%;
}

.banner__footer {
  margin: 1rem 0 3.25rem 0;
  display: flex;
  justify-content: center;
}

.banner__footer--link {
  text-decoration: none;
  display: block;
  color: black;
  height: 5rem;
}

.banner__footer--link::after {
  content: '';
  background: url(../img/Vector-1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 1.375rem;
  margin-left: auto;
  margin-right: auto;
  width: 2.7rem;
  height: 2rem;
  display: block;
  transition: margin-top ease-in-out 1s;
}

.banner__footer--link:hover::after {
  animation: click-me 1s infinite;
}

@keyframes click-me {

  0%,
  100% {
    margin-top: 2rem;
  }

  50% {
    margin-top: 1rem;
  }
}

.counters__color {
  background-color: #f0f7f7;
  padding: 6rem 0;
}

.counters__color:nth-child(even) {
  background-color: #fff;
}

.counters__title h3 {
  text-align: center;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 2.5rem;
  font-weight: normal;
}

@media only screen and (min-width: 576px) {
  .counters__title h3 {
    text-align: left;
  }
}

.counters__title h3::after {
  content: '';
  background-image: url(../img/elemento-de-apoio.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  margin: auto;
  width: 5.875rem;
  height: 1.25rem;
}

@media only screen and (min-width: 576px) {
  .counters__title h3::after {
    margin: -.5rem 0 0 -2rem;
  }
}

.counters .counter {
  padding: 1rem 0;
  text-align: center;
}

.counters .counter:first-child {
  padding-left: 0;
}

@media only screen and (min-width: 576px) {
  .counters .counter {
    text-align: left;
    padding: 1rem;
  }
}

.counters .counter--number {
  font-size: 3rem;
  font-family: "Lato-Black", sans-serif;
  margin-bottom: .5rem;
}

.counters .counter--subtitle {
  font-size: 1.5rem;
}

/*# sourceMappingURL=style.css.map */

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}