:root {
  --cor-roxa: #574AE8;
  --cor-cinza-escuro: #475461;
  --cor-cinza: #B6B6B6;
  --cor-branco: #fff;
  --cor-branco-2: #F3F5F7;
  --cor-gradiente: linear-gradient(90deg, #574AE8 0%, #3EA1DB 100%);
  --cor-preto: #212429;
}

* {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
p,
a,
li,
ul,
span {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

body {
  font-family: "Lexend Deca", sans-serif;
  font-size: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.blog__header {
  background: linear-gradient(to right, #182848, #4b6cb7);
  padding: 32px 0 16px 0;
  position: fixed;
  top: 0;
  width: 100%;
  transition: padding 0.3s ease-in;
  z-index: 1000;
}
.blog__header .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog__header .menu .logo a {
  color: var(--cor-branco);
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
}
.blog__header .menu .logo a ion-icon {
  margin-right: 8px;
}
.blog__header .menu nav {
  display: flex;
}
.blog__header .menu nav p {
  color: var(--cor-branco);
  font-size: 1.5rem;
}
.blog__header .menu nav a {
  padding: 0.5rem;
  transition: transform 0.3s ease-in;
}
.blog__header .menu nav a:hover {
  transform: translateY(-5px);
}
.blog__header .menu nav a img {
  max-width: 32px;
}
.blog__header-busca {
  padding-top: 64px;
  transition: padding 0.3s ease-in;
  display: flex;
  flex-direction: column;
}
.blog__header-busca .input__box {
  position: relative;
}
.blog__header-busca .input__box .img__lupa {
  position: absolute;
  display: block;
  top: -2px;
  padding-left: 24px;
}
.blog__header-busca .input__box .img__lupa ion-icon {
  font-size: 22px;
  color: var(--cor-branco);
}
.blog__header-busca .input__box input {
  outline: none;
  width: 100%;
  padding: 18px 64px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--cor-branco);
  font-weight: 500;
}
.blog__header-busca .input__box input::-moz-placeholder {
  color: var(--cor-branco);
  font-weight: 500;
  font-size: 0.875rem;
}
.blog__header-busca .input__box input:-ms-input-placeholder {
  color: var(--cor-branco);
  font-weight: 500;
  font-size: 0.875rem;
}
.blog__header-busca .input__box input::placeholder {
  color: var(--cor-branco);
  font-weight: 500;
  font-size: 0.875rem;
}
.blog__header-busca span {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  font-size: 0.75rem;
  color: #fff;
}

.blog__conteudo {
  margin: 290px 0 0 0;
}
.blog__conteudo-wrapper {
  display: flex;
  flex-direction: column;
}
@media (max-width: 540px) {
  .blog__conteudo-wrapper {
    display: flex;
    flex-direction: column;
    grid-gap: 0;
  }
}
.blog__conteudo-wrapper-item {
  background: #FFFFFF;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in;
  cursor: pointer;
  display: flex;
}
@media (max-width: 540px) {
  .blog__conteudo-wrapper-item {
    flex-direction: column;
  }
}
@media (max-width: 540px) {
  .blog__conteudo-wrapper-item + .blog__conteudo-wrapper-item {
    margin-top: 16px;
  }
}
.blog__conteudo-wrapper-item:hover {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
.blog__conteudo-wrapper-item:not(:last-child) {
  margin-bottom: 48px;
}
.blog__conteudo-wrapper-item-foto {
  flex: 1;
}
.blog__conteudo-wrapper-item-foto img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.blog__conteudo-wrapper-item-texto {
  flex: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.blog__conteudo-wrapper-item-texto-informacoes {
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
}
.blog__conteudo-wrapper-item-texto-informacoes .data__publicacao {
  color: var(--cor-cinza);
  font-weight: 400;
  font-size: 1rem;
  display: block;
}
.blog__conteudo-wrapper-item-texto-informacoes .autor {
  display: block;
  color: var(--cor-cinza);
  font-weight: 400;
  font-size: 0.875rem;
  margin-top: 8px;
}
.blog__conteudo-wrapper-item-texto-informacoes .autor span {
  font-weight: 500;
  color: var(--cor-cinza-escuro);
}
.blog__conteudo-wrapper-item-texto-informacoes .btn__favorite {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
}
.blog__conteudo-wrapper-item-texto-informacoes .btn__favorite ion-icon {
  font-size: 18px;
  color: var(--cor-roxa);
}
.blog__conteudo-wrapper-item-texto .titulo__materia {
  font-weight: 400;
  font-size: 24px;
  padding-bottom: 8px;
  color: #313131;
}
.blog__conteudo-wrapper-item-texto .texto__materia {
  color: var(--cor-cinza);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 160%;
}
.blog__conteudo-wrapper-item-texto .ver_mais {
  display: inline-flex;
  margin-top: 16px;
  color: var(--cor-roxa);
  font-weight: 500;
  position: relative;
  padding: 0.3125rem 0;
}
.blog__conteudo-wrapper-item-texto .ver_mais::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0px;
  left: 0;
  background-color: var(--cor-roxa);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.blog__conteudo-wrapper-item-texto .ver_mais:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.filtro__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 540px) {
  .filtro__wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}
.filtro__wrapper .filtro__input {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}
.filtro__wrapper .filtro__input + .filtro__input {
  margin-left: 16px;
}
@media (max-width: 540px) {
  .filtro__wrapper .filtro__input + .filtro__input {
    margin-left: 0;
  }
}
.filtro__wrapper .filtro__input label {
  margin-bottom: 16px;
}
.filtro__wrapper .filtro__input select {
  padding: 8px;
  border-radius: 4px;
  outline: none;
  font-size: 14px;
}

.loader {
  opacity: 0;
  display: flex;
  justify-content: center;
  margin-top: 32px;
  transition: opacity 0.3s ease-in;
}
.loader .circle {
  background-color: #4b6cb7;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 5px;
  -webkit-animation: bounce 0.5s ease-in infinite;
          animation: bounce 0.5s ease-in infinite;
}
.loader .circle:nth-of-type(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.loader .circle:nth-of-type(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.choices {
  width: 250px;
}
@media (max-width: 540px) {
  .choices {
    width: 100%;
  }
}
.choices__inner {
  padding: 8px 16px;
  font-size: 16px;
  background-color: #fff;
  border-radius: 4px;
}
.choices .choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: var(--cor-cinza);
  color: var(--cor-branco);
}

.get__more {
  display: none;
}
@media (max-width: 1024px) {
  .get__more {
    display: flex;
  }
}
.get__more button {
  padding: 18px;
  display: inline-flex;
  justify-content: center;
  margin: 1rem auto 4rem auto;
  background: #4b6cb7;
  color: var(--cor-branco);
  border-radius: 4px;
  border: none;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.get__more button:hover {
  background: #3a5699;
}

.blog__header.scroll {
  padding: 16px 0;
}

.blog__header.scroll .blog__header-busca {
  padding-top: 16px;
}

.loader.show {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */