@charset "UTF-8";
/*
Theme Name: Munique Alves teacher
Theme URI: http://muniquealves.com
Author: Orbzz Agência Criativa
Author URI: http://orbzz.com
Description: Um tema personalizado para WordPress.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: muniquealves
*/
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  text-decoration: none;
  list-style: none;
  background: transparent;
  outline: none;
}

h1, h2, h3, h4, p, span, input, select, a, li, button, textarea {
  font-family: "Work Sans", sans-serif;
}

header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  padding: 15px 0;
  z-index: 5;
  background: #FFF;
}
header .wrapper {
  width: 80%;
  padding: 0 20px;
  max-width: 100%;
}
@media screen and (max-width: 990px) {
  header .wrapper {
    width: 100%;
  }
}
header .header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px; /* Altura inicial */
  transition: height 0.3s ease, padding 0.3s ease; /* Transição suave */
}
header .menu-mobile {
  display: none;
}
@media screen and (max-width: 990px) {
  header .menu-mobile {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  header .menu-mobile p {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 10px 15px;
    font-size: 14px;
    gap: 10px;
    border-radius: 50px;
    background: #CD675A;
    color: #FFF;
  }
  header .menu-mobile p i {
    font-size: 18px;
    color: #FFF;
  }
}
header .nav-menu {
  flex: 1;
}
@media screen and (max-width: 990px) {
  header .nav-menu {
    display: none;
  }
}
header .nav-menu ul {
  display: flex;
  gap: 20px;
}
header .nav-menu ul li {
  position: relative;
  transition: ease-in-out 320ms;
}
header .nav-menu ul li:hover a {
  color: #CD675A;
  font-weight: bold;
}
header .nav-menu ul li:hover:after {
  content: "";
  width: 60%;
  height: 3px;
  background: #CD675A;
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: 2;
  border-radius: 50px;
  transition: ease-in-out 320ms;
  animation: fillLine 320ms forwards cubic-bezier(0.36, 0.07, 0.19, 0.97);
  transform: translate3d(0, 0, 0);
}
@keyframes fillLine {
  0% {
    width: 0;
  }
  100% {
    width: 60%;
  }
}
header .nav-menu ul li:hover:before {
  content: "";
  width: 4px;
  height: 3px;
  border-radius: 100px;
  background: #CD675A;
  position: absolute;
  bottom: -5px;
  left: 68%;
  z-index: 2;
  opacity: 0;
  transition: ease-in-out 320ms;
  animation: fillBall 280ms forwards cubic-bezier(0.36, 0.07, 0.19, 0.97);
  transform: translate3d(0, 0, 0);
}
@keyframes fillBall {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
header .nav-menu ul li:not(:hover):before {
  transform: translateX(-100%);
  transition: ease-in-out 320ms;
}
header .nav-menu ul a {
  color: #232323;
  transition: ease-in-out 320ms;
}
header .nav-menu ul .active_link a {
  color: #CD675A;
  font-weight: bold;
}
header .nav-menu ul .active_link:after {
  content: "";
  width: 60%;
  height: 3px;
  background: #CD675A;
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: 2;
  border-radius: 50px;
}
header .nav-menu ul .active_link:before {
  content: "";
  width: 4px;
  height: 3px;
  border-radius: 100px;
  background: #CD675A;
  position: absolute;
  bottom: -5px;
  left: 78%;
  z-index: 2;
}
header .logo {
  flex: 1;
  justify-content: center;
  display: flex;
  position: relative;
}
@media screen and (max-width: 990px) {
  header .logo {
    background: pink;
  }
}
header .logo img {
  position: absolute;
  top: -40px;
  transform-origin: top center; /* A escala será a partir do bottom center */
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 990px) {
  header .logo img {
    max-width: 140px;
  }
}
header .nav-link {
  flex: 1;
  display: flex;
}
@media screen and (max-width: 990px) {
  header .nav-link {
    display: none;
  }
}
header .nav-link ul {
  width: 100%;
  justify-content: flex-end;
  display: flex;
  gap: 10px;
}
header .nav-link ul a {
  width: 50px;
  height: 50px;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  color: #232323;
  position: relative;
  transition: 280ms ease-in-out;
}
header .nav-link ul a i {
  position: relative;
  z-index: 2;
  transition: 280ms ease-in-out;
}
header .nav-link ul a:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  background: #CD675A;
  border-radius: 50%;
  z-index: 1;
  transition: 280ms ease-in-out;
}
header .nav-link ul a:hover i {
  color: #FFF;
}
header .nav-link ul a:hover:after {
  width: 50px;
  height: 50px;
}

.overlay-menu {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 10;
}

.menumobile {
  width: 80%;
  background: #FFF;
  height: 100vh;
  z-index: 11;
  position: fixed;
  padding: 15px;
}
.menumobile .nav-link {
  flex: 1;
  display: flex;
  margin-top: 80px;
}
.menumobile .nav-link ul {
  width: 100%;
  justify-content: flex-start;
  display: flex;
  gap: 10px;
}
.menumobile .nav-link ul a {
  width: 50px;
  height: 50px;
  background: #CD675A;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  color: #FFF;
  position: relative;
  transition: 280ms ease-in-out;
}
.menumobile .nav-link ul a i {
  position: relative;
  z-index: 2;
  transition: 280ms ease-in-out;
}
.menumobile .nav-menu {
  flex: 1;
}
.menumobile .nav-menu ul {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.menumobile .nav-menu ul li {
  position: relative;
  transition: ease-in-out 320ms;
}
.menumobile .nav-menu ul li:hover a {
  color: #CD675A;
  font-weight: bold;
}
.menumobile .nav-menu ul li:hover:after {
  content: "";
  width: 60%;
  height: 3px;
  background: #CD675A;
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: 2;
  border-radius: 50px;
  transition: ease-in-out 320ms;
  animation: fillLine 320ms forwards cubic-bezier(0.36, 0.07, 0.19, 0.97);
  transform: translate3d(0, 0, 0);
}
@keyframes fillLine {
  0% {
    width: 0;
  }
  100% {
    width: 60%;
  }
}
.menumobile .nav-menu ul li:hover:before {
  content: "";
  width: 4px;
  height: 3px;
  border-radius: 100px;
  background: #CD675A;
  position: absolute;
  bottom: -5px;
  left: 68%;
  z-index: 2;
  opacity: 0;
  transition: ease-in-out 320ms;
  animation: fillBall 280ms forwards cubic-bezier(0.36, 0.07, 0.19, 0.97);
  transform: translate3d(0, 0, 0);
}
@keyframes fillBall {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.menumobile .nav-menu ul li:not(:hover):before {
  transform: translateX(-100%);
  transition: ease-in-out 320ms;
}
.menumobile .nav-menu ul a {
  color: #232323;
  transition: ease-in-out 320ms;
}
.menumobile .nav-menu ul .active_link a {
  color: #CD675A;
  font-weight: bold;
}
.menumobile .nav-menu ul .active_link:after {
  content: "";
  width: 60%;
  height: 3px;
  background: #CD675A;
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: 2;
  border-radius: 50px;
}
.menumobile .nav-menu ul .active_link:before {
  content: "";
  width: 4px;
  height: 3px;
  border-radius: 100px;
  background: #CD675A;
  position: absolute;
  bottom: -5px;
  left: 78%;
  z-index: 2;
}

.wrapper {
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

main {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.banner {
  width: 100%;
  height: 700px;
  background: #DDD;
}
.banner img {
  max-width: 100%;
  height: auto;
}

.blog-conteudo {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.blog-conteudo .blog-destaque {
  margin-top: 50px;
  height: 500px;
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
  background: #CCC;
  position: relative;
}
.blog-conteudo .blog-destaque .content_postt {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  /* From https://css.glass */
  /* From https://css.glass */
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  width: 100%;
}
.blog-conteudo .blog-destaque .post {
  width: 100%;
  cursor: pointer;
  height: 100%;
}
.blog-conteudo .blog-destaque .post a {
  color: #FFF;
}
.blog-conteudo .blog-destaque .post:hover .post_image img {
  transform: scale(1.1);
}
.blog-conteudo .blog-destaque .post:hover .post_nome {
  color: #CD675A;
}
.blog-conteudo .blog-destaque .post .post_image {
  position: relative;
  width: 100%;
  height: 100%;
}
.blog-conteudo .blog-destaque .post .post_image img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: ease-in-out 320ms;
}
.blog-conteudo .blog-destaque .post .post_image .post_categorias {
  position: absolute;
  top: 15px;
  left: 15px;
  width: fit-content;
}
.blog-conteudo .blog-destaque .post .post_image .post_categorias ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.blog-conteudo .blog-destaque .post .post_image .post_categorias ul li {
  background: #fff;
  color: #232323;
  font-size: 12px;
  padding: 5px;
  border-radius: 50px;
}
.blog-conteudo .blog-destaque .post .post_descritivo {
  width: 100%;
  padding: 20px;
}
.blog-conteudo .blog-destaque .post .post_descritivo .post_nome {
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-conteudo .blog-destaque .post .post_descritivo .post_descricao {
  text-align: left;
  margin-top: 8px;
}
.blog-conteudo .blog-destaque .post .post_descritivo .post_descricao span {
  text-align: left;
  font-size: 14px;
  display: -webkit-box;
  height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-conteudo .blog-destaque .post .post_detalhes {
  width: unset;
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 15px;
}
.blog-conteudo .blog-destaque .post .post_detalhes .post_autora {
  flex: unset;
  display: flex;
  align-items: center;
}
.blog-conteudo .blog-destaque .post .post_detalhes .post_autora .post_autora_foto {
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 50%;
}
.blog-conteudo .blog-destaque .post .post_detalhes .post_autora .post_autora_nome {
  font-size: 14px;
  margin-left: 8px;
}
.blog-conteudo .blog-destaque .post .post_detalhes .post_data {
  flex: unset;
  display: flex;
  align-items: center;
}
.blog-conteudo .blog-destaque .post .post_detalhes .post_data .post_data_icone {
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-conteudo .blog-destaque .post .post_detalhes .post_data .post_data_icone i {
  color: #232323;
}
.blog-conteudo .blog-destaque .post .post_detalhes .post_data .post_data_data {
  font-size: 14px;
  margin-left: 8px;
}
.blog-conteudo .blog-grid, .blog-conteudo .blog-full {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.blog-conteudo .blog-grid .blog-grid-posts-grid, .blog-conteudo .blog-full .blog-grid-posts-grid {
  width: 100%;
}
.blog-conteudo .blog-grid .blog-grid-posts-categoria, .blog-conteudo .blog-full .blog-grid-posts-categoria {
  flex: 1;
  border-radius: 10px;
}
.blog-conteudo .blog-grid .blog-carousel, .blog-conteudo .blog-full .blog-carousel {
  width: 100%;
  margin-top: 40px;
}
.blog-conteudo .blog-grid .blog-grid-lista-categoria, .blog-conteudo .blog-full .blog-grid-lista-categoria {
  max-width: 300px;
  width: 100%;
  height: 400px;
  border-radius: 10px;
}
.blog-conteudo .blog-grid .blog-grid-lista-categoria ul, .blog-conteudo .blog-full .blog-grid-lista-categoria ul {
  margin-top: 35px;
}
.blog-conteudo .blog-grid .blog-grid-lista-categoria ul li, .blog-conteudo .blog-full .blog-grid-lista-categoria ul li {
  border: 1px solid #232323;
  border-radius: 50px;
  padding: 5px 10px;
  margin-bottom: 5px;
  width: fit-content;
  transition: ease-in-out 320ms;
}
.blog-conteudo .blog-grid .blog-grid-lista-categoria ul li:hover, .blog-conteudo .blog-full .blog-grid-lista-categoria ul li:hover {
  background: #CD675A;
  border: 1px solid #CD675A;
  color: #FFF;
}
.blog-conteudo .blog-grid .blog-grid-lista-categoria ul li:hover a, .blog-conteudo .blog-full .blog-grid-lista-categoria ul li:hover a {
  font-weight: 500;
  color: #FFF !important;
}
.blog-conteudo .blog-grid .blog-grid-lista-categoria ul li:last-child, .blog-conteudo .blog-full .blog-grid-lista-categoria ul li:last-child {
  margin-bottom: 0;
}
.blog-conteudo .blog-grid .blog-grid-lista-categoria ul li a, .blog-conteudo .blog-full .blog-grid-lista-categoria ul li a {
  color: #232323;
  transition: ease-in-out 320ms;
}
.blog-conteudo .blog-full .blog-grid-posts-categoria {
  width: 100%;
}
.blog-conteudo .blog-full .blog-list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.blog-conteudo .blog-full .blog-list .post {
  flex: 1 0 23%;
  width: unset;
  max-width: unset;
}

.banner-home {
  width: 100%;
  background: #f2f2f2;
  margin-bottom: 80px;
  height: 500px;
  overflow: hidden;
}
.banner-home img {
  max-width: 100%;
  height: auto;
}

.post {
  width: 100%;
  cursor: pointer;
}
.post a {
  color: #232323;
}
.post:hover .post_image img {
  transform: scale(1.1);
}
.post:hover .post_nome {
  color: #CD675A;
}
.post .post_image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 250px;
  border-radius: 20px;
}
.post .post_image img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: ease-in-out 320ms;
}
.post .post_image .post_categorias {
  position: absolute;
  top: 15px;
  left: 15px;
  width: fit-content;
}
.post .post_image .post_categorias ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.post .post_image .post_categorias ul li {
  background: #fff;
  color: #232323;
  font-size: 12px;
  padding: 5px;
  border-radius: 50px;
}
.post .post_descritivo {
  width: 100%;
  padding: 20px;
}
.post .post_descritivo .post_nome {
  text-align: left;
  font-size: 16px;
  font-weight: bold;
}
.post .post_descritivo .post_nome p {
  display: -webkit-box;
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.post .post_descritivo .post_descricao {
  text-align: left;
  margin-top: 8px;
}
.post .post_descritivo .post_descricao span {
  text-align: left;
  font-size: 14px;
  display: -webkit-box;
  height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.post .post_detalhes {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 15px;
}
.post .post_detalhes .post_autora {
  flex: 1;
  display: flex;
  align-items: center;
}
.post .post_detalhes .post_autora .post_autora_foto {
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 50%;
  overflow: hidden;
}
.post .post_detalhes .post_autora .post_autora_nome {
  font-size: 14px;
  margin-left: 8px;
}
.post .post_detalhes .post_data {
  flex: 1;
  display: flex;
  align-items: center;
}
.post .post_detalhes .post_data .post_data_icone {
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.post .post_detalhes .post_data .post_data_data {
  font-size: 14px;
  margin-left: 8px;
}

.header-no-filter {
  padding-bottom: 24px !important;
}

.carousel-no-filter {
  margin-top: 20px !important;
}

.post-loop {
  width: 100%;
}

.blog-grid-header {
  padding-bottom: 0px;
  border-bottom: 1px solid #CCC;
  margin-top: 80px;
}
.blog-grid-header:first-child {
  margin-top: 0;
}
.blog-grid-header h1 {
  font-size: 26px;
}
.blog-grid-header .hold-link {
  width: 100%;
  display: flex;
  justify-content: space-around;
  gap: 15px;
  margin-top: 5px;
  align-items: center;
  padding-bottom: 15px;
}
@media screen and (max-width: 990px) {
  .blog-grid-header .hold-link {
    flex-direction: column;
  }
}
.blog-grid-header .hold-link p {
  opacity: 0.5;
  font-size: 14px;
  flex: 1;
  display: flex;
}
@media screen and (max-width: 990px) {
  .blog-grid-header .hold-link p {
    justify-content: flex-start;
    width: 100%;
    text-align: left;
  }
}
.blog-grid-header .hold-link a {
  font-size: 14px;
  color: #CD675A;
  display: flex;
  flex: 1;
  justify-content: flex-end;
  font-weight: 500;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 990px) {
  .blog-grid-header .hold-link a {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
    margin-top: 10px;
  }
  .blog-grid-header .hold-link a strong {
    margin-left: 5px;
  }
  .blog-grid-header .hold-link a br {
    display: none;
  }
}
.blog-grid-header .filtro {
  margin-top: 30px;
}
.blog-grid-header .filtro ul {
  display: flex;
  gap: 20px;
}
.blog-grid-header .filtro ul li {
  cursor: pointer;
  opacity: 0.5;
}
.blog-grid-header .filtro ul .ativo {
  color: #CD675A;
  font-weight: bold;
  border-bottom: 3px solid #CD675A;
  padding-bottom: 15px;
  opacity: 1;
}

footer {
  background: #F6E2CE;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 80px;
}

.footer {
  width: 100%;
}
.footer .row {
  width: 100%;
  display: flex;
}
.footer .row .logo {
  flex: 2;
}
.footer .row .logo img {
  max-width: 200px;
}
.footer .row .menu {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
.footer .row .menu nav {
  padding: 0 0 0 20px;
}
.footer .row .menu nav p {
  font-weight: bold;
}
.footer .row .menu nav ul {
  margin-top: 40px;
}
.footer .row .menu nav ul li {
  margin-top: 15px;
}
.footer .row .menu nav ul li a {
  color: #000;
}
.footer .row-rights {
  border-top: 1px solid #232323;
  padding-top: 60px;
  margin-top: 60px;
  display: flex;
  align-items: center;
}
.footer .row-rights ul {
  display: flex;
  flex: 1;
  gap: 20px;
}
.footer .row-rights ul a {
  color: #232323;
  font-size: 14px;
}
.footer .row-rights .orbzz-agencia-criativa {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.footer .row-rights .orbzz-agencia-criativa span {
  font-size: 14px;
  margin-bottom: 5px;
  color: #232323;
}

.post-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.post-page > .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.post-imagem {
  width: 100%;
  height: 600px;
  background: #DDD;
  display: flex;
  overflow: hidden;
  margin-top: 50px;
  border-radius: 30px;
}
.post-imagem img {
  max-width: 100%;
  height: auto;
}

.post-detalhes {
  max-width: 80%;
  padding: 30px;
  background: #FFF;
  width: 100%;
  border-radius: 10px;
  margin-top: -100px;
}
.post-detalhes h1 {
  font-size: 38px;
}
.post-detalhes p {
  font-size: 16px;
  margin-top: 8px;
}
.post-detalhes .post-autor {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 80px;
}
.post-detalhes .post-autor .informacoes {
  flex: 1;
  display: flex;
  gap: 20px;
}
.post-detalhes .post-autor .informacoes .autor {
  display: flex;
  align-items: center;
}
.post-detalhes .post-autor .informacoes .autor .foto {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  overflow: hidden;
  background: #DDD;
}
.post-detalhes .post-autor .informacoes .autor .nome {
  margin-left: 10px;
  font-family: "Work Sans";
}
.post-detalhes .post-autor .informacoes .publicado-em {
  display: flex;
  align-items: center;
}
.post-detalhes .post-autor .informacoes .publicado-em .icone {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #DDD;
}
.post-detalhes .post-autor .informacoes .publicado-em .data {
  margin-left: 10px;
  font-family: "Work Sans";
}
.post-detalhes .post-autor .post-tags {
  display: flex;
  align-items: center;
  gap: 5px;
}
.post-detalhes .post-autor .post-tags .categoria {
  border: 1px solid #DDD;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 14px;
}

.post-conteudo {
  max-width: 80%;
  width: 100%;
  padding: 0 30px;
  margin-top: 0px;
  line-height: 33px;
}
.post-conteudo .wp-block-post-excerpt {
  margin-bottom: 40px;
}
.post-conteudo figure {
  margin-top: 40px;
  margin-bottom: 40px;
}
.post-conteudo figure img {
  border-radius: 40px;
}
.post-conteudo .wp-block-list {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.post-conteudo .wp-block-list li {
  list-style: disc;
  margin: 0;
}
.post-conteudo blockquote {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 800;
  font-size: 38px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #121416;
  position: relative;
  display: flex;
  margin-top: 40px;
  margin-bottom: 40px;
  justify-content: flex-start;
  line-height: normal;
  align-items: flex-start;
  max-width: 900px;
  width: 100%;
}
.post-conteudo blockquote:before {
  content: "";
  max-width: 100px;
  width: 120px;
  height: 120px;
  margin-right: 40px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="41" height="38" viewBox="0 0 41 38" fill="none"><path d="M28.6047 38L25.1085 34.5021C26.8036 31.5342 28.2868 28.5662 29.5581 25.5983C30.8295 22.7364 31.5711 19.9275 31.7829 17.1715L23.8372 15.4226V0H41L41 11.1297C41 17.7015 39.7287 23.0014 37.186 27.0293C34.5375 31.1632 31.677 34.8201 28.6047 38ZM4.76744 38L1.27132 34.5021C2.96641 31.5342 4.44961 28.5662 5.72093 25.5983C6.99225 22.7364 7.73385 19.9275 7.94574 17.1715L0 15.4226L0 0L17.1628 0V11.1297C17.1628 17.7015 15.8915 23.0014 13.3488 27.0293C10.7003 31.1632 7.83979 34.8201 4.76744 38Z" fill="%23A9A9A9"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 13px;
}

.blog-grid-category {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.blog-grid-category .post {
  flex: 1 0 28%;
  max-width: 458px;
  width: 100%;
}

.header-interno {
  z-index: 5;
  position: relative;
}
.header-interno .logo img {
  position: relative;
  top: 0;
  max-width: 180px;
}

.category-conteudo {
  gap: 25px;
}

.page_categorias {
  width: 100%;
}
.page_categorias .blog-grid-lista-categoria {
  width: 100%;
  display: flex;
  justify-content: center;
}
.page_categorias .blog-grid-lista-categoria ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
}
.page_categorias .blog-grid-lista-categoria ul li {
  border: 1px solid #232323;
  border-radius: 50px;
  padding: 5px 10px;
  margin-bottom: 5px;
  width: fit-content;
  transition: ease-in-out 320ms;
}
.page_categorias .blog-grid-lista-categoria ul li:hover {
  background: #CD675A;
  border: 1px solid #CD675A;
  color: #FFF;
}
.page_categorias .blog-grid-lista-categoria ul li:hover a {
  font-weight: 500;
  color: #FFF !important;
}
.page_categorias .blog-grid-lista-categoria ul li:last-child {
  margin-bottom: 0;
}
.page_categorias .blog-grid-lista-categoria ul li a {
  color: #232323;
  transition: ease-in-out 320ms;
}
.page_categorias .blog-grid-lista-categoria-posts {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}
.page_categorias .blog-grid-lista-categoria-posts .post {
  flex: 1 0 23%;
  max-width: 335px;
}
.page_categorias .pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.page_categorias .pagination span, .page_categorias .pagination a {
  border: 1px solid #DDD;
  min-width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  color: #232323;
}
.page_categorias .pagination span {
  background: #232323;
  color: #FFF;
}

.assinatura-autor {
  width: 100%;
  border-top: 2px solid #f2f2f2;
  margin-top: 50px;
  padding-top: 50px;
  display: flex;
  align-items: center;
}
.assinatura-autor .autor-info {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.assinatura-autor .autor-info .botao-extra {
  background: #CD675A;
  border-radius: 50px;
  padding: 10px;
}
.assinatura-autor .autor-info .botao-extra a {
  color: #FFF;
  font-weight: 600;
  font-size: 14px;
  display: flex;
}
.assinatura-autor .autor-info .botao-extra a i {
  font-size: 40px;
  color: #FFF;
}
.assinatura-autor .autor-info .foto-autor {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
}
.assinatura-autor .autor-info .info-autor {
  flex: 1;
}
.assinatura-autor .autor-info .info-autor h3 {
  text-transform: capitalize;
}
.assinatura-autor .autor-info .info-autor .profissao {
  font-size: 14px;
  opacity: 0.5;
}
.assinatura-autor .autor-info .info-autor .description-autor {
  margin-top: 15px;
  font-family: "Work Sans", sans-serif !important;
}
.assinatura-autor .autor-info .info-autor .redes-sociais {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.assinatura-autor .autor-info .info-autor .redes-sociais p {
  font-size: 12px;
  margin: 0;
}
.assinatura-autor .autor-info .info-autor .redes-sociais a {
  color: #232323;
}
.assinatura-autor .autor-info .info-autor .redes-sociais a:hover {
  color: #CD675A;
}

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