@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body.dark {
  --cor_icones: #4a4a4a;
  --fundo: #282830;
  --cor_texto: #ffffff;
  --fundo_header: #000;
  --texto_destaque: #00fafa;
}

body.dark a.logo-dark {
  display: none;
}

body.dark a.logo-light {
  display: block;
}

body.light {
  --cor_icones: #4a4a4a;
  --fundo: #fff;
  --cor_texto: #282830;
  --fundo_header: #ffff;
  --texto_destaque: #00fafa;
}

body.light a.logo-light {
  display: none;
}

body.light a.logo-dark {
  display: block;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--fundo);
  color: var(--cor_texto);
}

input:focus,
a:focus,
button:focus,
textarea:focus {
  outline: none !important;
}

input:active,
a:active,
button:active,
textarea:active {
  outline: none !important;
}

a:hover {
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

p {
  font-weight: 400;
  font-size: 16px;
}

h1 {
  font-size: 44px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 34px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 20px;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after q:before,
q:after {
  content: "";
  content: none;
}

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

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

::-webkit-input-placeholder,
select,
input {
  /* Edge */
  font-size: 16px;
}

:-ms-input-placeholder,
select,
input {
  /* Internet Explorer 10-11 */
  font-size: 16px;
}

::-ms-input-placeholder,
select,
input {
  font-size: 16px;
}

::placeholder,
select,
input {
  font-size: 16px;
}

h2.titulo-sec {
  font-size: 20px;
  color: var(--cor_texto);
  font-weight: 800;
}

.top-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 6px 0;
  gap: 30px;
}

.top-header button {
  background-color: transparent;
  color: var(--cor_icones);
  border: none;
  font-size: 13px;
  font-weight: 500;
}

.top-header button i {
  margin-right: 6px;
}

.top-header button#dark.active {
  color: var(--texto_destaque);
}

.top-header button#light.active {
  color: #ffa800;
}

header {
  height: auto;
  padding: 40px 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-color: var(--fundo_header);
  -webkit-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
  position: relative;
  margin-bottom: 10px;
}

header:after {
  content: "";
  display: block;
  width: 100%;
  background-image: url(../img/line-header.png);
  height: 3px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

header.fixed-top {
  height: auto;
  -webkit-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
  padding-bottom: 70px;
}

header.fixed-top .web-stories-list {
  display: none;
  -webkit-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
}

header .logo img {
  width: 100%;
  height: auto;
}

header .social {
  margin-bottom: 10px;
}

header .social a {
  display: inline-block;
  margin: 0 3px;
}

header .social a i {
  color: var(--cor_icones);
  font-size: 18px;
}

header .col_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header nav {
  padding: 0 !important;
}

header nav ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header nav ul li {
  margin: 0px 8px;
}

header nav ul li a {
  font-size: 14px;
  color: var(--cor_texto);
  font-weight: 800;
  font-style: italic;
  position: relative;
  text-transform: uppercase;
}

header nav ul li a:hover {
  color: var(--cor_texto);
}

header nav ul li a span.line {
  width: 100%;
  height: 3px;
  position: absolute;
  display: block;
  bottom: -6px;
  left: 0;
}

header nav .dropdown.show .dropdown-toggle::after {
  background-image: url("../svg/up-arrow.svg");
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

header nav .dropdown-toggle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

header nav .dropdown-toggle:after {
  background-image: url("../svg/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 20px;
  right: -25px;
  background-size: 14px;
  position: absolute;
  bottom: 0;
  border: none;
  background-color: transparent;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

header form {
  background-color: #fff;
  position: absolute;
  height: 45px;
  border-radius: 10px;
  width: 100%;
  bottom: -22px;
  left: 0;
  z-index: 99;
  right: 0;
  margin: auto;
  border: 1px solid #4a4a4a;
}

header form input {
  width: 100%;
  border: none;
  padding-left: 50px;
  height: 100%;
}

header form button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  background: transparent;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: 0;
  left: 15px;
  top: 0;
  margin: auto;
  display: block;
  border-right: 2px solid #4a4a4a;
  padding-right: 15px;
}

header form button img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar-toggler {
  display: none;
}

body .web-stories-list.is-view-type-circles .web-stories-list__story-poster {
  position: relative;
}

body .web-stories-list.is-view-type-circles .web-stories-list__story-poster:before {
  content: "";
  height: 104px;
  width: 104px;
  background-image: url(../img/fundo-story.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  z-index: -1;
}

body .web-stories-list .story-content-overlay__excerpt, .web-stories-list .story-content-overlay__title {
  -webkit-line-clamp: revert !important;
  color: var(--cor_icones);
  font-style: italic;
  font-size: 13px;
}

body .web-stories-list.is-view-type-circles .glider-track {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
  margin: 0 auto;
  width: 100% !important;
}

body .web-stories-list.is-carousel.has-archive-link {
  margin-bottom: 0 !important;
}

body .web-stories-list.is-carousel .web-stories-list__inner-wrapper {
  margin: 0 auto;
  max-width: inherit;
  position: relative;
  width: 100% !important;
  margin: 0 !important;
}

#main-home {
  overflow: hidden;
}

#main-home .slider-posts {
  padding: 45px 0;
}

#main-home .slider-posts .container {
  position: relative;
}

#main-home .slider-posts .prev-slider {
  position: absolute;
  left: -33px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

#main-home .slider-posts .next-slider {
  position: absolute;
  right: -33px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

#main-home .slider-posts .slick-list {
  overflow: visible;
}

#main-home .slider-posts .slider {
  position: relative;
  padding: 0 14px;
}

#main-home .slider-posts .slider:after {
  content: "";
  display: block;
  height: 100%;
  width: 600px;
  background-color: var(--fundo);
  position: absolute;
  bottom: 0;
  left: -600px;
  right: 0;
  z-index: 1;
}

#main-home .slider-posts .slider .slider-item {
  position: relative;
  height: 400px;
  margin-right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 35px 25px;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#main-home .slider-posts .slider .slider-item:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-image: url(../img/overlay-post.png);
  background-position-x: center;
  background-position-y: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

#main-home .slider-posts .slider .slider-item a.link {
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 10;
  top: 0;
}

#main-home .slider-posts .slider .slider-item .content {
  position: relative;
  z-index: 11;
}

#main-home .slider-posts .slider .slider-item .content .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}

#main-home .slider-posts .slider .slider-item .content .info a {
  margin-right: 10px;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--cor_texto);
}

#main-home .slider-posts .slider .slider-item .content .info a.category {
  display: block;
  color: #fff;
  background-color: red;
  padding: 4px;
  font-size: 12px;
  font-weight: 500;
}

#main-home .slider-posts .slider .slider-item .content h3 {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

#main-home .lasted {
  padding: 40px 0;
}

#main-home .lasted .titulo-sec {
  margin-bottom: 30px;
}

#main-home .lasted .lasted-all a {
  width: 100%;
  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;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 278px;
}

#main-home .lasted .lasted-all a i {
  color: var(--cor_texto);
  font-size: 70px;
}

#main-home .lasted .lasted-all a p {
  margin-top: 0px;
  color: var(--cor_texto);
  text-transform: uppercase;
  font-style: italic;
  line-height: 22px;
}

#main-home .lasted .lasted-item {
  margin-bottom: 25px;
}

#main-home .lasted .lasted-item img {
  height: 278px;
  -o-object-fit: cover;
     object-fit: cover;
}

#main-home .lasted .lasted-item p {
  padding: 10px;
  color: var(--cor_texto);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin-top: 0;
}

#main-home .lista-posts .cabecalho {
  margin: 40px 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#main-home .lista-posts .cabecalho a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-left: 2px solid #4a4a4a;
  padding-left: 30px;
  margin-left: 30px;
  color: var(--cor_texto);
  font-style: italic;
  font-size: 12px;
  text-transform: uppercase;
}

#main-home .lista-posts .post-item {
  padding-right: 50px;
}

#main-home .lista-posts .publicidade {
  margin-bottom: 40px;
}

#main-home .lista-posts .publicidade img {
  width: 100%;
}

#main-home .sidebar-posts .post-item a.category {
  display: none;
}

.sidebar-posts {
  margin-top: 40px;
  border: 1px solid #4a4a4a;
  padding: 0;
}

.sidebar-posts .publicidade {
  margin-bottom: 20px;
}

.sidebar-posts .publicidade img {
  width: 100%;
}

.sidebar-posts .post-sec {
  padding: 0 20px;
}

.sidebar-posts .post-sec .cabecalho {
  margin: 30px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #4a4a4a;
  padding-bottom: 15px;
}

.sidebar-posts .post-sec .cabecalho a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-left: 2px solid #4a4a4a;
  padding-left: 30px;
  margin-left: 30px;
  color: var(--cor_texto);
  font-style: italic;
  font-size: 12px;
  text-transform: uppercase;
}

.sidebar-posts .post-sec .post-item {
  margin-bottom: 25px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sidebar-posts .post-sec .post-item:last-child .content {
  border-bottom: 0;
}

.sidebar-posts .post-sec .post-item .thumb {
  width: 35%;
}

.sidebar-posts .post-sec .post-item .thumb img {
  height: 100px;
}

.sidebar-posts .post-sec .post-item .content {
  width: 60%;
  margin-left: 5%;
  height: auto;
  padding-bottom: 20px;
  border-bottom: 1px solid #4a4a4a;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.sidebar-posts.sidebar-interna {
  padding: 0;
  border: none;
}

.sidebar-posts.sidebar-interna .post-sec {
  padding: 0px;
}

.sidebar-posts.sidebar-interna .post-sec .post-item .thumb img {
  height: 130px;
}

.sidebar-posts.sidebar-interna .post-sec .post-item .content a.author {
  display: none;
}

.sidebar-posts.sidebar-interna .post-sec .post-item .content h3 {
  font-size: 16px;
}

.single main {
  padding-top: 40px;
}

.single main .post-content .breadcrumbs {
  margin-bottom: 0px;
  border-bottom: 0;
}

.single main .post-content .sidebar-posts {
  margin-top: 0;
}

.single main .post-content .post-header {
  display: block;
}

.single main .post-content .post-header figure {
  width: 100%;
  margin-bottom: 15px;
}

.single main .post-content .post-header figure img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}

.single main .post-content .post-header figure p {
  margin: 15px 0;
  font-size: 12px;
  color: var(--cor_texto);
}

.single main .post-content .post-header .autor-data {
  color: #04c9c9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
}

.single main .post-content .post-header .autor-data p {
  font-weight: 500;
  font-size: 15px;
}

.single main .post-content .post-header .autor-data span {
  display: block;
  padding: 0 8px;
}

.single main .post-content .post-header .share-post {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.single main .post-content .post-header .share-post a img {
  max-width: 20px;
  max-height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.single main .post-content .post-header h1 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 10px 0;
}

.single main .post-content .content {
  margin: 25px 0;
}

.single main .post-content .content h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.single main .post-content .content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.single main .post-content .content h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.single main .post-content .content iframe {
  width: 100%;
  max-height: 600px;
  min-height: 450px;
  margin: 25px 0 0;
  height: auto;
}

.single main .post-content .content p {
  margin-bottom: 25px;
  font-weight: 500;
}

.single main .post-content .content p strong, .single main .post-content .content p a, .single main .post-content .content li strong, .single main .post-content .content li a {
  color: var(--texto_destaque);
}

.single main .post-content .autor-sec {
  padding: 50px 80px;
  padding-right: 120px;
  position: relative;
  border: 1px solid #4a4a4a;
  border-radius: 10px;
  margin: 50px 0;
}

.single main .post-content .autor-sec img.avatar {
  position: absolute;
  width: 100px;
  height: 100px;
  left: -50px;
  border-radius: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.single main .post-content .autor-sec h4 {
  color: var(--texto_destaque);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.single main .post-content .autor-sec p {
  font-size: 14px;
}

.single main .post-content .autor-sec .redes-autor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.single main .post-content .autor-sec .redes-autor a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.single main .post-content .avaliacao-sec {
  margin: 50px 0;
}

.single main .post-content .avaliacao-sec .progress--circle {
  position: relative;
  display: inline-block;
  margin: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: transparent;
}

.single main .post-content .avaliacao-sec .progress--circle:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: var(--fundo);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.single main .post-content .avaliacao-sec .progress--circle:after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--texto_destaque);
}

.single main .post-content .avaliacao-sec .progress__number {
  position: absolute;
  top: 50%;
  width: 100%;
  line-height: 1;
  margin-top: -0.75rem;
  text-align: center;
  font-size: 1.5rem;
  color: var(--texto_destaque);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--0:after {
  width: 0%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--0:after {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #6c6d6f), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, left top, right top, color-stop(50%, var(--texto_destaque)), color-stop(50%, #6c6d6f), to(#6c6d6f));
  background-image: linear-gradient(90deg, #6c6d6f 50%, transparent 50%, transparent), linear-gradient(90deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--5:after {
  width: 5%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--5:after {
  background-image: linear-gradient(90deg, #6c6d6f 50%, transparent 50%, transparent), linear-gradient(108deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--10:after {
  width: 10%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--10:after {
  background-image: linear-gradient(90deg, #6c6d6f 50%, transparent 50%, transparent), linear-gradient(126deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--15:after {
  width: 15%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--15:after {
  background-image: linear-gradient(90deg, #6c6d6f 50%, transparent 50%, transparent), linear-gradient(144deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--20:after {
  width: 20%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--20:after {
  background-image: linear-gradient(90deg, #6c6d6f 50%, transparent 50%, transparent), linear-gradient(162deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--25:after {
  width: 25%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--25:after {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #6c6d6f), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, left top, left bottom, color-stop(50%, var(--texto_destaque)), color-stop(50%, #6c6d6f), to(#6c6d6f));
  background-image: linear-gradient(90deg, #6c6d6f 50%, transparent 50%, transparent), linear-gradient(180deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--30:after {
  width: 30%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--30:after {
  background-image: linear-gradient(90deg, #6c6d6f 50%, transparent 50%, transparent), linear-gradient(198deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--35:after {
  width: 35%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--35:after {
  background-image: linear-gradient(90deg, #6c6d6f 50%, transparent 50%, transparent), linear-gradient(216deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--40:after {
  width: 40%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--40:after {
  background-image: linear-gradient(90deg, #6c6d6f 50%, transparent 50%, transparent), linear-gradient(234deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--45:after {
  width: 45%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--45:after {
  background-image: linear-gradient(90deg, #6c6d6f 50%, transparent 50%, transparent), linear-gradient(252deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--50:after {
  width: 50%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--50:after {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(50%, var(--texto_destaque)), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, var(--texto_destaque)), color-stop(50%, #6c6d6f), to(#6c6d6f));
  background-image: linear-gradient(-90deg, var(--texto_destaque) 50%, transparent 50%, transparent), linear-gradient(270deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--55:after {
  width: 55%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--55:after {
  background-image: linear-gradient(-72deg, var(--texto_destaque) 50%, transparent 50%, transparent), linear-gradient(270deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--60:after {
  width: 60%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--60:after {
  background-image: linear-gradient(-54deg, var(--texto_destaque) 50%, transparent 50%, transparent), linear-gradient(270deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--65:after {
  width: 65%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--65:after {
  background-image: linear-gradient(-36deg, var(--texto_destaque) 50%, transparent 50%, transparent), linear-gradient(270deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--70:after {
  width: 70%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--70:after {
  background-image: linear-gradient(-18deg, var(--texto_destaque) 50%, transparent 50%, transparent), linear-gradient(270deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--75:after {
  width: 75%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--75:after {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, var(--texto_destaque)), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, var(--texto_destaque)), color-stop(50%, #6c6d6f), to(#6c6d6f));
  background-image: linear-gradient(0deg, var(--texto_destaque) 50%, transparent 50%, transparent), linear-gradient(270deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--80:after {
  width: 80%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--80:after {
  background-image: linear-gradient(18deg, var(--texto_destaque) 50%, transparent 50%, transparent), linear-gradient(270deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--85:after {
  width: 85%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--85:after {
  background-image: linear-gradient(36deg, var(--texto_destaque) 50%, transparent 50%, transparent), linear-gradient(270deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--90:after {
  width: 90%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--90:after {
  background-image: linear-gradient(54deg, var(--texto_destaque) 50%, transparent 50%, transparent), linear-gradient(270deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--95:after {
  width: 95%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--95:after {
  background-image: linear-gradient(72deg, var(--texto_destaque) 50%, transparent 50%, transparent), linear-gradient(270deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .avaliacao-sec .progress--bar.progress--100:after {
  width: 100%;
}

.single main .post-content .avaliacao-sec .progress--circle.progress--100:after {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--texto_destaque)), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, var(--texto_destaque)), color-stop(50%, #6c6d6f), to(#6c6d6f));
  background-image: linear-gradient(90deg, var(--texto_destaque) 50%, transparent 50%, transparent), linear-gradient(270deg, var(--texto_destaque) 50%, #6c6d6f 50%, #6c6d6f);
}

.single main .post-content .plataformas-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin: 50px 0;
  padding-right: 100px;
}

.single main .post-content .tags-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin: 50px 0;
  padding-right: 100px;
}

.single main .post-content .tags-sec h3 {
  width: 100%;
  font-weight: 600;
  font-size: 24px;
}

.single main .post-content .tags-sec a {
  color: var(--texto_destaque);
}

.single main .post-content .posts-related {
  padding-right: 100px;
}

.single main .post-content .posts-related .cabecalho {
  margin: 10px 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 15px;
}

.single main .post-content .posts-related .cabecalho a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-left: 2px solid #4a4a4a;
  padding-left: 30px;
  margin-left: 30px;
  color: var(--cor_texto);
  font-style: italic;
  font-size: 12px;
  text-transform: uppercase;
}

.single main .post-content .posts-related h3 {
  font-weight: 600;
  font-size: 24px;
}

.single main .post-content .posts-related .post-item h3 {
  font-size: 16px;
}

.avaliacao-item {
  margin-bottom: 40px;
}

.avaliacao-item h5 {
  color: var(--texto_destaque);
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
}

.avaliacao-item p.pontos {
  margin-bottom: 5px;
  font-size: 14px;
}

.avaliacao-item p.pontos span {
  font-weight: 600;
}

.avaliacao-item .icons {
  display: none;
}

.avaliacao-item .icons.not-simbol svg * {
  fill: var(--cor_icones) !important;
}

.avaliacao-item .icons a.simbol {
  cursor: inherit;
}

.avaliacao-item .icons a.simbol svg * {
  fill: var(--texto_destaque);
}

.avaliacao-item .icons a.simbol.check svg * {
  fill: var(--texto_destaque);
}

.avaliacao-item .icons a.simbol.check ~ * svg * {
  fill: var(--cor_icones);
}

.avaliacao-item .barra {
  background-color: #959595;
  border-radius: 20px;
  position: relative;
  margin: 15px 0;
  height: 10px;
  width: 80%;
}

.avaliacao-item .barra .progress-done {
  background: var(--texto_destaque);
  border-radius: 20px;
  color: #fff;
  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;
  height: 100%;
  width: 0;
  opacity: 0;
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
}

.post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}

.post-item .thumb {
  width: 40%;
}

.post-item .thumb img {
  width: 100%;
  height: 142px;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-item .content {
  padding: 0 0 0 16px;
  width: 60%;
}

.post-item .content h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--cor_texto);
}

.post-item .content .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}

.post-item .content .info a {
  margin-right: 10px;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--cor_texto);
}

.post-item .content .info a.author {
  font-size: 10px;
  margin-right: 0px;
}

.post-item .content .info a.category {
  display: block;
  color: #fff;
  background-color: red;
  padding: 6px;
  font-size: 10px;
  font-weight: 500;
}

.post-item .content .avaliacao-item {
  margin-top: 10px;
  margin-bottom: 0;
}

.post-item .content .avaliacao-item h5 {
  display: none;
}

.paginacao {
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.paginacao a {
  color: var(--cor_icones);
  font-size: 15px;
  margin-right: 18px;
}

.paginacao span {
  color: var(--texto_destaque);
  font-size: 15px;
  margin-right: 18px;
  font-weight: 700;
}

.paginacao .next {
  font-size: 0;
  width: 45px;
  height: 45px;
  background-image: url(../img/proximo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
}

.paginacao .prev {
  font-size: 0;
  width: 45px;
  height: 45px;
  background-image: url(../img/prev.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
}

.category main, .blog main {
  padding-top: 40px;
}

.category .lista-posts, .blog .lista-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}

.category .lista-posts .alm-listing, .blog .lista-posts .alm-listing {
  width: 100%;
}

.category .lista-posts .alm-listing .alm-reveal, .blog .lista-posts .alm-listing .alm-reveal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.category .lista-posts .post-item, .blog .lista-posts .post-item {
  width: calc(96% / 2);
  margin: 1%;
  margin-bottom: 30px;
}

.category .lista-posts .post-item .thumb, .blog .lista-posts .post-item .thumb {
  width: 100%;
  margin-bottom: 15px;
}

.category .lista-posts .post-item .thumb img, .blog .lista-posts .post-item .thumb img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.category .lista-posts .post-item .content, .blog .lista-posts .post-item .content {
  width: 100%;
  padding: 0;
}

.category .lista-posts .post-item .content h3, .blog .lista-posts .post-item .content h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.category .lista-posts .post-item .content p, .blog .lista-posts .post-item .content p {
  font-size: 14px;
  color: var(--cor_texto);
}

.category .lista-posts .post-item.destaque, .blog .lista-posts .post-item.destaque {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 50px;
}

.category .lista-posts .post-item.destaque .thumb, .blog .lista-posts .post-item.destaque .thumb {
  width: 58%;
}

.category .lista-posts .post-item.destaque .thumb img, .blog .lista-posts .post-item.destaque .thumb img {
  height: 320px;
}

.category .lista-posts .post-item.destaque .content, .blog .lista-posts .post-item.destaque .content {
  width: 42%;
  padding-left: 15px;
}

.category .lista-posts .post-item.destaque .content h3, .blog .lista-posts .post-item.destaque .content h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.category .mais-lidas, .blog .mais-lidas {
  padding: 50px 0px 0;
}

.category .mais-lidas .lista-posts .post-item, .blog .mais-lidas .lista-posts .post-item {
  width: 100%;
  margin-bottom: 50px;
}

.category .mais-lidas .lista-posts .post-item .thumb img, .blog .mais-lidas .lista-posts .post-item .thumb img {
  height: 160px;
}

.category .mais-lidas .lista-posts .post-item a.btn-leia, .blog .mais-lidas .lista-posts .post-item a.btn-leia {
  color: var(--texto_destaque);
  font-weight: 600;
  margin-top: 15px;
  display: block;
  font-size: 14px;
}

.category .mais-lidas .cabecalho, .blog .mais-lidas .cabecalho {
  margin: 10px 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 15px;
}

.category .mais-lidas .cabecalho a, .blog .mais-lidas .cabecalho a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-left: 2px solid #4a4a4a;
  padding-left: 30px;
  margin-left: 30px;
  color: var(--cor_texto);
  font-style: italic;
  font-size: 12px;
  text-transform: uppercase;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--cor_texto);
  gap: 20px;
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid #4a4a4a;
  margin-bottom: 00px;
}

.breadcrumbs p {
  font-size: 11px;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--cor_texto);
  font-size: 11px;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--cor_texto);
}

#main-quemsomos {
  padding: 40px 0 80px;
}

#main-quemsomos .with-sidebar .content-page {
  border: none;
  padding-left: 0;
  padding-right: 0;
}

#main-quemsomos .content-page {
  border: 1px solid #4a4a4a;
  padding: 100px 60px 80px;
  position: relative;
  margin-top: 110px;
  border-radius: 10px;
}

#main-quemsomos .content-page .cabecalho {
  background-image: url(../img/simbolo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90px;
  width: 400px;
  margin: 0 auto;
  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;
  height: 150px;
  position: absolute;
  left: 0;
  right: 0;
  top: -75px;
  text-align: center;
  background-color: var(--fundo);
}

#main-quemsomos .content-page .cabecalho h1 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 16px;
  display: block;
  width: 100%;
  text-align: center;
}

#main-quemsomos .content-page .box {
  margin-bottom: 50px;
}

#main-quemsomos .content-page .box:last-child {
  margin-bottom: 0;
}

#main-quemsomos .content-page .box h2 {
  color: var(--cor_texto);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

#main-quemsomos .content-page .box p {
  font-size: 15px;
}

#main-quemsomos .amazon-ultraverso {
  padding: 50px 0;
}

#main-quemsomos .amazon-ultraverso .box {
  background-color: #6f6f6f;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
}

#main-quemsomos .amazon-ultraverso .box p {
  color: var(--cor_texto);
  font-size: 15px;
}

#main-quemsomos .amazon-ultraverso .box a {
  color: var(--texto_destaque);
  font-weight: 600;
}

.search_main {
  padding-top: 40px;
}

.search_main .search-title {
  margin-bottom: 30px;
}

.search_main .search-title span {
  font-weight: bold;
  font-style: italic;
  text-decoration: underline;
}

.search_main .post-item {
  margin-bottom: 40px;
}

.search_main .post-item .thumb {
  width: 100%;
  margin-bottom: 10px;
}

.search_main .post-item .content {
  width: 100%;
  padding: 0;
}

footer {
  padding: 70px 0px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--fundo_header);
  position: relative;
}

footer a.btn-subir {
  display: block;
  position: absolute;
  bottom: 50px;
  right: 21%;
}

footer .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .logo a {
  display: block;
  margin-right: 40px;
}

footer nav {
  margin-top: 35px;
  border-top: 1px solid #4a4a4a;
  padding-top: 35px;
}

footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer nav ul li {
  max-width: calc(84% / 8);
  margin-right: 1%;
}

footer nav ul li a {
  color: var(--cor_texto);
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
  position: relative;
  font-size: 15px;
}

footer nav ul li a:hover {
  color: var(--cor_texto);
}

footer nav ul li a span.line {
  width: 100%;
  height: 3px;
  position: absolute;
  display: block;
  bottom: -6px;
  left: 0;
}

footer nav ul li .sub-menu {
  margin-top: 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer nav ul li .sub-menu li {
  max-width: 100%;
  margin-right: 0%;
}

footer nav ul li .sub-menu li a {
  font-size: 13px;
  font-weight: 400;
}

footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .social a {
  display: inline-block;
  margin: 0 10px;
}

footer .social a i {
  color: var(--cor_icones);
  font-size: 28px;
}

body .alm-btn-wrap .alm-load-more-btn, body .alm-btn-wrap .alm-load-more-btn.done {
  background-color: #00fafa !important;
  height: 40px;
  padding: 0 30px;
}

body .alm-btn-wrap .alm-load-more-btn.loading:before, body .alm-btn-wrap .alm-load-more-btn.done.loading:before {
  background-color: transparent !important;
}
/*# sourceMappingURL=main.css.map */