* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-margin-top: 25px;
}

html, body {
  overflow-x: hidden;
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Lato", sans-serif;
}

#index {
  padding: 4rem 0;
}
#index h2 {
  font-size: 1.8rem;
  font-family: "Raleway", sans-serif;
  color: #212529;
}
#index h2 a {
  color: #683895;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 4rem 0;
}

input {
  font-family: "Lato", sans-serif;
  padding: 1.3rem 1.5rem;
  border: none;
  outline: none;
  height: 55px;
  letter-spacing: 1px;
}
input::-moz-placeholder {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
}
input::placeholder {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
}

button[type=submit] {
  font-family: "Raleway", sans-serif;
  border: none;
  background: #212529;
  color: #fff;
  padding: 1.2rem 3rem;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  height: 55px;
}
button[type=submit]:hover {
  background: #8246ba;
  color: #fff;
}

/* MIXINS RESPONSIVO */
header {
  padding: 2rem 0;
}
header .container {
  width: 1396px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1400px) {
  header .container {
    width: 90vw;
  }
}
header .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  position: relative;
}
header .menu .logo img {
  width: 340px;
}
header .menu .menu-items {
  display: flex;
  align-items: center;
  gap: 3rem;
}
header .menu .menu-items a {
  font-family: "Raleway", sans-serif;
  color: #212529;
  font-size: 2.8rem;
  font-weight: 800;
  font-size: 1.3rem;
  color: #683895;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
  font-weight: 800;
}
header .menu .menu-items a:hover {
  color: #66c8ca;
}
@media only screen and (max-width: 992px) {
  header .menu .menu-items {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    background: #fff;
    z-index: 9999;
    width: 100%;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
}
@media only screen and (max-width: 992px) {
  header .menu .menu-items.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}
header .menu .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 999;
  margin-left: 1.1rem;
}
header .menu .hamburger span {
  height: 3px;
  width: 100%;
  background: #683895;
  border-radius: 3px;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 992px) {
  header .menu .hamburger {
    display: flex;
  }
}
header .menu .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(12px);
}
header .menu .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .menu .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);
}

footer {
  padding: 4rem 0;
  background: #683895;
  position: relative;
}
footer .main-content {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}
@media only screen and (max-width: 992px) {
  footer .main-content {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 768px) {
  footer .main-content {
    flex-direction: column;
  }
}
footer .main-content .info {
  width: 40%;
}
@media only screen and (max-width: 992px) {
  footer .main-content .info {
    width: 100%;
  }
}
footer .main-content .info img {
  filter: brightness(50);
  margin-bottom: 0.8rem;
}
footer .main-content .info p {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fff;
  margin: 1rem 0 0 0;
}
footer .main-content .site-map, footer .main-content .categorias, footer .main-content .destaque {
  margin-top: 2rem;
}
footer .main-content .site-map {
  width: 20%;
}
@media only screen and (max-width: 992px) {
  footer .main-content .site-map {
    width: 28%;
  }
}
@media only screen and (max-width: 768px) {
  footer .main-content .site-map {
    width: 100%;
  }
}
footer .main-content .site-map h4 {
  font-family: "Raleway", sans-serif;
  color: #212529;
  font-size: 2.8rem;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #fff;
}
footer .main-content .site-map .links {
  display: flex;
  flex-direction: column;
  margin: 0.8rem 0 0 1rem;
  gap: 0.2rem;
}
footer .main-content .site-map .links a {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fff;
  font-size: 1.1rem;
  position: relative;
}
footer .main-content .site-map .links a::after {
  content: "";
  position: absolute;
  top: 40%;
  left: -15px;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background: #fff;
}
footer .main-content .categorias {
  width: 20%;
}
@media only screen and (max-width: 992px) {
  footer .main-content .categorias {
    width: 28%;
  }
}
@media only screen and (max-width: 768px) {
  footer .main-content .categorias {
    width: 100%;
  }
}
footer .main-content .categorias h4 {
  font-family: "Raleway", sans-serif;
  color: #212529;
  font-size: 2.8rem;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #fff;
}
footer .main-content .categorias .links {
  display: flex;
  flex-direction: column;
  margin: 0.8rem 0 0 1rem;
  gap: 0.2rem;
}
footer .main-content .categorias .links a {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fff;
  font-size: 1.1rem;
  position: relative;
}
footer .main-content .categorias .links a::after {
  content: "";
  position: absolute;
  top: 40%;
  left: -15px;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background: #fff;
}
footer .main-content .destaque {
  width: 20%;
}
@media only screen and (max-width: 992px) {
  footer .main-content .destaque {
    width: 28%;
  }
}
@media only screen and (max-width: 768px) {
  footer .main-content .destaque {
    width: 100%;
  }
}
footer .main-content .destaque h4 {
  font-family: "Raleway", sans-serif;
  color: #212529;
  font-size: 2.8rem;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #fff;
}
footer .main-content .destaque .links {
  display: flex;
  flex-direction: column;
  margin: 0.8rem 0 0 1rem;
  gap: 0.2rem;
}
footer .main-content .destaque .links a {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fff;
  font-size: 1.1rem;
  position: relative;
}
footer .main-content .destaque .links a::after {
  content: "";
  position: absolute;
  top: 40%;
  left: -15px;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background: #fff;
}
footer .social {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
footer .social .item a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
footer .social .item img {
  filter: invert(1);
  width: 17px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .social .item span {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  font-family: "Raleway", sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
}
footer .radio {
  background: #fff;
  position: fixed;
  bottom: 5%;
  right: 0;
  display: flex;
  align-items: center;
  padding: 6px 32px;
  border-radius: 12px 0 0 12px;
  border: 2px solid #ddd;
}
footer .radio img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.copy .container {
  margin: 4rem auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.copy .container img {
  width: 46px;
}

.newsletter {
  padding: 0;
  padding-top: 2rem;
}
.newsletter .container {
  width: 1396px;
  margin: 0 auto;
  transition: 0.2s;
  border-radius: 10px;
  overflow: hidden;
  padding: 4rem 8rem;
  background: linear-gradient(to top, #683895, #66c8ca);
  background-size: 100% 200%;
  animation: moveGradient 5s ease-in-out infinite alternate;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 1400px) {
  .newsletter .container {
    width: 90vw;
  }
}
@media only screen and (max-width: 1200px) {
  .newsletter .container {
    padding: 4rem;
  }
}
@media only screen and (max-width: 992px) {
  .newsletter .container {
    padding: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .newsletter .container {
    padding: 4rem 2rem;
  }
}
@keyframes moveGradient {
  0% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
.newsletter .content {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .newsletter .content {
    width: 100%;
  }
}
.newsletter .content h2 {
  font-family: "Raleway", sans-serif;
  color: #212529;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}
@media only screen and (max-width: 1400px) {
  .newsletter .content h2 {
    white-space: normal;
  }
}
@media only screen and (max-width: 992px) {
  .newsletter .content h2 {
    font-size: 2.4rem;
  }
}
.newsletter .content form {
  display: flex;
  align-items: center;
  margin: 2.5rem 0 2rem 0;
}
.newsletter .content form input {
  width: 100%;
}
.newsletter .content p {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
}
.newsletter img {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .newsletter img {
    display: none;
  }
}

.container {
  width: 1396px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1400px) {
  .container {
    width: 90vw;
  }
}

.grid-wrapper {
  padding-top: 2rem;
  padding-bottom: 0;
}
.grid-wrapper .itens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 400px;
  gap: 1.5rem;
  height: 1249px;
}
@media only screen and (max-width: 1200px) {
  .grid-wrapper .itens {
    display: flex;
    flex-wrap: wrap;
    height: auto;
  }
}
.grid-wrapper .itens .item {
  border-radius: 10px;
  overflow: hidden;
  background: #ccc;
  display: flex;
  padding: 3rem;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .grid-wrapper .itens .item {
    flex: 1 1 calc(33.333% - 1rem);
    height: 280px;
  }
}
@media only screen and (max-width: 992px) {
  .grid-wrapper .itens .item {
    height: 240px !important;
  }
}
@media only screen and (max-width: 768px) {
  .grid-wrapper .itens .item {
    flex: 1 1 calc(50% - 1rem);
  }
}
@media only screen and (max-width: 576px) {
  .grid-wrapper .itens .item {
    flex: 1 1 calc(100% - 1rem);
  }
}
.grid-wrapper .itens .item.noticias {
  grid-column: 1;
  grid-row: 1;
}
.grid-wrapper .itens .item.quem-somos {
  grid-column: 2;
  grid-row: 1;
}
.grid-wrapper .itens .item.producao {
  grid-column: 3;
  grid-row: 1/3;
  height: 75%;
}
@media only screen and (max-width: 1200px) {
  .grid-wrapper .itens .item.producao {
    height: auto;
  }
}
.grid-wrapper .itens .item.destaque {
  grid-column: 1/3;
  grid-row: 2;
}
.grid-wrapper .itens .item.pesquisa {
  grid-column: 1;
  grid-row: 3;
}
.grid-wrapper .itens .item.extensao {
  grid-column: 2;
  grid-row: 3;
}
.grid-wrapper .itens .item.divulgacao {
  grid-column: 3;
  grid-row: 3/5;
  height: 73.3%;
  margin-top: -12.7rem;
}
@media only screen and (max-width: 1200px) {
  .grid-wrapper .itens .item.divulgacao {
    height: 280px;
    margin-top: auto;
  }
}
.grid-wrapper .itens .item .img-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}
.grid-wrapper .itens .item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
  filter: saturate(1.5);
}
.grid-wrapper .itens .item .img-wrapper .fx {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  filter: brightness(1.3);
}
.grid-wrapper .itens .item .text-wrapper {
  z-index: 9;
}
.grid-wrapper .itens .item .text-wrapper p {
  font-family: "Raleway", sans-serif;
  color: #212529;
  font-size: 2.8rem;
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 2px 2px 10px #575757;
}

.noticias {
  padding-top: 2rem;
}
.noticias .container {
  width: 1396px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1400px) {
  .noticias .container {
    width: 90vw;
  }
}
.noticias .content {
  display: flex;
  gap: 2rem;
}
@media only screen and (max-width: 1200px) {
  .noticias .content {
    flex-direction: column;
  }
}
.noticias .content .item:hover .img-wrapper img {
  transform: scale(1.1);
}
.noticias .content .item .img-wrapper {
  position: relative;
  background: linear-gradient(to top, #683895, #66c8ca);
  overflow: hidden;
}
.noticias .content .item .img-wrapper .item-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.noticias .content .item .tags {
  display: flex;
  align-items: center;
  background: #683895;
  padding: 0.4rem 1rem;
  width: -moz-max-content;
  width: max-content;
  border-radius: 2px;
  gap: 0.4rem;
  position: absolute;
  top: 20px;
  left: 20px;
}
@media only screen and (max-width: 992px) {
  .noticias .content .item .tags {
    align-items: flex-start;
    gap: 0.2rem;
    top: 15px;
    left: 15px;
  }
}
.noticias .content .item .tags p {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-right: 1rem;
}
.noticias .content .item .tags p:last-child {
  padding-right: 0;
}
.noticias .content .item .tags p::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-30%);
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.noticias .content .item .tags p:last-child::after {
  content: none;
}
.noticias .content .item .tags .sep {
  color: #fff;
  position: relative;
  top: -1px;
  font-size: 12px;
}
.noticias .content .item .date {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  display: flex;
  color: #8cd6d7;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  margin: 0.8rem 0;
}
@media only screen and (max-width: 992px) {
  .noticias .content .item .date {
    font-size: 0.9rem;
  }
}
.noticias .content .item .text-wrapper h2 {
  font-family: "Raleway", sans-serif;
  color: #212529;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 992px) {
  .noticias .content .item .text-wrapper h2 {
    font-size: 1.8rem !important;
  }
}
.noticias .content .item .text-wrapper p {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
}
.noticias .content .item .divisor {
  width: 100px;
  height: 3px;
  background: #66c8ca;
  margin-top: 1.5rem;
}
.noticias .content .promo-banner {
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(to top, #683895, #66c8ca);
  height: 150px;
}
@media only screen and (max-width: 1200px) {
  .noticias .content .promo-banner {
    display: none;
  }
}
.noticias .content .promo-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}
.noticias .content .left {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 1200px) {
  .noticias .content .left {
    width: 100%;
    flex-direction: row;
  }
}
@media only screen and (max-width: 768px) {
  .noticias .content .left {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 768px) {
  .noticias .content .left .item {
    flex: 1 1 calc(50% - 1rem);
  }
}
@media only screen and (max-width: 375px) {
  .noticias .content .left .item {
    flex: 1 1 calc(100% - 1rem);
  }
}
.noticias .content .left .item .img-wrapper {
  border-radius: 10px;
  overflow: hidden;
  height: 230px;
}
@media only screen and (max-width: 992px) {
  .noticias .content .left .item .img-wrapper {
    height: 190px;
  }
}
@media only screen and (max-width: 768px) {
  .noticias .content .left .item .img-wrapper {
    height: 300px;
  }
}
@media only screen and (max-width: 576px) {
  .noticias .content .left .item .img-wrapper {
    height: 200px;
  }
}
.noticias .content .left .item .text-wrapper h2 {
  font-size: 1.8rem;
}
.noticias .content .center {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 1200px) {
  .noticias .content .center {
    width: 100%;
    flex-direction: row;
  }
}
@media only screen and (max-width: 768px) {
  .noticias .content .center {
    flex-direction: column;
  }
}
.noticias .content .center .item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .noticias .content .center .item {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .noticias .content .center .item {
    width: 100%;
  }
}
.noticias .content .center .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to top, #683895, transparent);
  pointer-events: none;
}
.noticias .content .center .item .img-wrapper {
  height: 600px;
}
@media only screen and (max-width: 1200px) {
  .noticias .content .center .item .img-wrapper {
    height: 550px;
  }
}
@media only screen and (max-width: 992px) {
  .noticias .content .center .item .img-wrapper {
    height: 420px;
  }
}
@media only screen and (max-width: 768px) {
  .noticias .content .center .item .img-wrapper {
    height: 600px;
  }
}
@media only screen and (max-width: 576px) {
  .noticias .content .center .item .img-wrapper {
    height: 500px;
  }
}
@media only screen and (max-width: 375px) {
  .noticias .content .center .item .img-wrapper {
    height: 350px;
  }
}
.noticias .content .center .item .text-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.9rem 2.6rem;
  z-index: 999;
}
.noticias .content .center .item .text-wrapper .date {
  color: #fff;
}
@media only screen and (max-width: 1200px) {
  .noticias .content .center .item .text-wrapper .date {
    font-size: 0.9rem;
  }
}
.noticias .content .center .item .text-wrapper h2 {
  font-family: "Raleway", sans-serif;
  color: #212529;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
@media only screen and (max-width: 1200px) {
  .noticias .content .center .item .text-wrapper h2 {
    font-size: 2.3rem;
  }
}
.noticias .content .center .item .divisor {
  margin-bottom: 1.5rem;
}
.noticias .content .right {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 1200px) {
  .noticias .content .right {
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
  }
}
.noticias .content .right .item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 1200px) {
  .noticias .content .right .item {
    flex: 1 1 calc(50% - 1rem);
  }
}
@media only screen and (max-width: 576px) {
  .noticias .content .right .item {
    flex: 1 1 calc(100% - 1rem);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.noticias .content .right .item #img-link {
  width: 35%;
  height: 110px;
}
@media only screen and (max-width: 576px) {
  .noticias .content .right .item #img-link {
    width: 100%;
    height: 200px;
  }
}
.noticias .content .right .item .img-wrapper {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.noticias .content .right .item .text-wrapper {
  width: 65%;
}
@media only screen and (max-width: 576px) {
  .noticias .content .right .item .text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.noticias .content .right .item .text-wrapper h2 {
  font-size: 0.9rem;
  line-height: 1.2;
  margin-bottom: 0;
}
.noticias .content .right .item .text-wrapper .tags {
  position: inherit;
  background: transparent;
  gap: 0.4rem;
  padding-right: 0;
  padding-left: 0;
}
.noticias .content .right .item .text-wrapper .tags p {
  color: #66c8ca;
  font-size: 0.75rem;
}
.noticias .content .right .item .text-wrapper .tags p::after {
  background: #66c8ca;
  transform: translateY(-50%);
}
.noticias .content .right .item .text-wrapper .tags .sep {
  color: #66c8ca;
  position: relative;
  top: -1px;
  font-size: 12px;
}
.noticias .content .right .promo-banner {
  height: 100px;
}

.single-conteudo .content {
  margin: 4rem 0 6rem 0;
}
.single-conteudo .content .container {
  display: flex;
  gap: 4rem;
}
.single-conteudo .content main {
  width: 80%;
}
.single-conteudo .content main .title {
  font-family: "Raleway", sans-serif;
  color: #212529;
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 2rem 0;
  color: rgba(33, 37, 41, 0.9);
  font-size: 2rem;
}
.single-conteudo .content main #resumo, .single-conteudo .content main #author, .single-conteudo .content main #date {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  color: rgba(33, 37, 41, 0.8);
  line-height: 1.8;
}
.single-conteudo .content main #resumo strong, .single-conteudo .content main #author strong, .single-conteudo .content main #date strong {
  color: #683895;
}
.single-conteudo .content main #resumo a, .single-conteudo .content main #author a, .single-conteudo .content main #date a {
  color: #66c8ca;
}
.single-conteudo .content main #resumo {
  margin: 0 0 2rem 0;
}
.single-conteudo .content main .info {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  border-top: 1px solid rgba(104, 56, 149, 0.2);
  border-bottom: 1px solid rgba(104, 56, 149, 0.2);
  padding: 1rem 0 0.9rem 1rem;
}
.single-conteudo .content main .info .author-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
.single-conteudo .content main .info .author-wrapper img {
  width: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-conteudo .content main .info span {
  font-size: 0.9rem !important;
  color: #683895 !important;
  text-transform: uppercase;
  font-weight: 800;
}
.single-conteudo .content main .img-wrapper {
  width: 100%;
  height: 800px;
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
}
.single-conteudo .content main .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-conteudo .content main .text-wrapper {
  padding: 0 2rem;
  margin-top: 3rem;
}
.single-conteudo .content main .text-wrapper div {
  gap: 0;
}
.single-conteudo .content main .text-wrapper p, .single-conteudo .content main .text-wrapper li {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  color: rgba(33, 37, 41, 0.8);
  line-height: 1.8;
  margin: 2rem 0 0 0;
}
.single-conteudo .content main .text-wrapper p strong, .single-conteudo .content main .text-wrapper li strong {
  color: #683895;
}
.single-conteudo .content main .text-wrapper p a, .single-conteudo .content main .text-wrapper li a {
  color: #66c8ca;
}
.single-conteudo .content main .text-wrapper li {
  margin: 0;
}
.single-conteudo .content aside {
  width: 20%;
}
.single-conteudo .content aside h3 {
  font-family: "Raleway", sans-serif;
  color: #212529;
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 2rem 0;
  color: rgba(104, 56, 149, 0.8);
  font-size: 1.5rem;
}
.single-conteudo .content aside .relacionados {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.single-conteudo .content aside .relacionados .relacionado-item .relacionado-thumbnail {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.single-conteudo .content aside .relacionados .relacionado-item .relacionado-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-conteudo .content aside .relacionados .relacionado-item .relacionado-content #date {
  font-family: "Lato", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  font-size: 0.9rem;
  color: rgba(104, 56, 149, 0.6);
  font-style: italic;
  font-weight: 600;
}
.single-conteudo .content aside .relacionados .relacionado-item .relacionado-content h4 {
  font-family: "Raleway", sans-serif;
  color: #212529;
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(33, 37, 41, 0.8);
  font-size: 1.2rem;
  line-height: 1.2;
}

.page-categoria {
  padding: 44px 0 80px 0;
}
.page-categoria .term-header {
  padding-bottom: 32px;
}
.page-categoria .term-header h1 {
  font-family: "Raleway", sans-serif;
  color: #212529;
  font-size: 2.8rem;
  font-weight: 800;
  color: #683895;
}
.page-categoria .categoria {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .page-categoria .categoria {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .page-categoria .categoria {
    flex-direction: column;
  }
}
.page-categoria .categoria .item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 680px;
}
@media only screen and (max-width: 1200px) {
  .page-categoria .categoria .item {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .page-categoria .categoria .item {
    width: 100%;
  }
}
.page-categoria .categoria .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to top, #683895, transparent);
  pointer-events: none;
}
.page-categoria .categoria .item .img-wrapper {
  height: 600px;
}
@media only screen and (max-width: 1200px) {
  .page-categoria .categoria .item .img-wrapper {
    height: 550px;
  }
}
@media only screen and (max-width: 992px) {
  .page-categoria .categoria .item .img-wrapper {
    height: 420px;
  }
}
@media only screen and (max-width: 768px) {
  .page-categoria .categoria .item .img-wrapper {
    height: 600px;
  }
}
@media only screen and (max-width: 576px) {
  .page-categoria .categoria .item .img-wrapper {
    height: 500px;
  }
}
@media only screen and (max-width: 375px) {
  .page-categoria .categoria .item .img-wrapper {
    height: 350px;
  }
}
.page-categoria .categoria .item .text-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 32px;
  z-index: 999;
}
.page-categoria .categoria .item .text-wrapper .date {
  color: #fff;
}
@media only screen and (max-width: 1200px) {
  .page-categoria .categoria .item .text-wrapper .date {
    font-size: 0.9rem;
  }
}
.page-categoria .categoria .item .text-wrapper h2 {
  font-family: "Raleway", sans-serif;
  color: #212529;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  font-size: 38px;
}
@media only screen and (max-width: 1200px) {
  .page-categoria .categoria .item .text-wrapper h2 {
    font-size: 2.3rem;
  }
}
.page-categoria .categoria .item .divisor {
  margin-bottom: 1.5rem;
}/*# sourceMappingURL=main.css.map */