.c-blog__section {
  padding-left: calc(var(--vw) * 16);
  padding-right: calc(var(--vw) * 16);
}

.c-blog__categories {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--vw) * 20);
  margin-bottom: calc(var(--vw) * 24);
  font-weight: 600;
}

.c-blog__categories-button {
  background-color: var(--secondary-color);
  font-size: calc(var(--vw) * 14);
  line-height: calc(var(--vw) * 22);
  color: var(--black);
  padding: calc(var(--vw) * 5) calc(var(--vw) * 12);
  border-radius: calc(var(--vw) * 4);
  text-decoration: none;
}

.c-blog__card {
  background-color: var(--white);
  border-radius: calc(var(--vw) * 16);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 10px 15px -3px #0000001a;
  position: relative;
}

.c-blog__card-categories {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(var(--vw) * 8);
  width: 100%;
  gap: calc(var(--vw) * 16);
}

.c-blog__card-category {
  background-color: var(--black);
  color: var(--white);
  font-size: calc(var(--vw) * 10);
  font-weight: 600;
  line-height: calc(var(--vw) * 17);
  text-decoration: none;
  border-radius: calc(var(--vw) * 200);
  padding: calc(var(--vw) * 2) calc(var(--vw) * 4);
}

.c-blog__card-link {
  text-decoration: none;
  gap: calc(var(--vw) * 8);
  display: flex;
  flex-direction: column;
}

.c-blog__card-img img {
  height: auto;
  width: 100%;
}

.c-blog__card-body {
  padding: calc(var(--vw) * 16);
}

.c-blog__card-title {
  font-size: calc(var(--vw) * 19);
  line-height: calc(var(--vw) * 21);
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}

.c-blog__card-subtitle {
  font-size: calc(var(--vw) * 16);
  line-height: calc(var(--vw) * 24);
  color: var(--gray-600);
  font-weight: 400;
  text-decoration: none;
}

.c-blog__card-author {
  font-size: calc(var(--vw) * 11);
  color: var(--gray-600);
  font-weight: 400;
  text-decoration: none;
  margin-top: calc(var(--vw) * 8);
}

.c-blog__detail {
  min-width: 0;
}

.c-blog__detail {
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: calc(var(--vw) * 24);
  }

  p:not(:last-child) {
    margin-bottom: calc(var(--vw) * 20);
  }

  ol {
    list-style-type: decimal;
  }

  ol,
  ul {
    list-style-position: outside;
    padding-left: calc(var(--vw) * 24);
    margin-bottom: calc(var(--vw) * 32);
  }

  ul {
    list-style-type: disc;
  }
  li::marker {
    color: var(--black);
    font-weight: 700;
  }
  li::before {
    content: "";
  }

  ol li,
  ul li {
    margin-bottom: calc(var(--vw) * 8);
  }

  a {
    color: var(--black);
    font-weight: 700;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .wp-block-button .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--vw) * 10);
    border-radius: calc(var(--vw) * 8);
    font-size: calc(var(--vw) * 16);
    padding: calc(var(--vw) * 12);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: filter 0.15s;
    -webkit-user-select: none;
    user-select: none;
    background-color: var(--secondary-color);
    color: var(--black);
  }
}

.c-blog__detail-title {
  margin-bottom: calc(var(--vw) * 24);
}

.c-blog__detail-icons {
  display: flex;
  flex-direction: column;
  gap: calc(var(--vw) * 4);
  margin-bottom: calc(var(--vw) * 24);
  > div {
    display: flex;
    align-items: center;
  }
  .share_social--link  {
    width: calc(var(--vw) * 24);
    height: calc(var(--vw) * 24);
    text-decoration: none;
    margin-right: calc(var(--vw) * 8);
    svg {
      max-heigth: calc(var(--vw) * 24);
    }
  }
}

.c-blog__detail-icons-text {
  font-size: calc(var(--vw) * 14);
  line-height: calc(var(--vw) * 22);
  color: var(--black);
  font-weight: 400;
}

.c-blog__detail-related-posts {
  background-color: var(--gray-100);
  padding-top: calc(var(--vw) * 56);
  padding-bottom: calc(var(--vw) * 56);
  padding-left: calc(var(--vw) * 20);
  padding-right: calc(var(--vw) * 20);
}

.c-blog__detail-related-posts-title {
  text-align: center;
  margin-bottom: calc(var(--vw) * 24);
}

.c-blog__detail-related-posts-subtitle {
  text-align: center;
}

.c-blog__detail-offers {
  background-color: var(--gray-100);
  padding-left: calc(var(--vw) * 20);
  padding-right: calc(var(--vw) * 20);
  padding-top: calc(var(--vw) * 56);
  padding-bottom: calc(var(--vw) * 56);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-blog__detail-offers-title {
  display: flex;
  flex-direction: column;
  gap: calc(var(--vw) * 8);
}

.c-blog__detail-offers-button {
  margin: auto;
}

.c-blog__detail-offers-button a {
  text-decoration: none;
}

@media (min-width: 1024px) {
  .c-blog__section {
    padding-left: calc(var(--vw) * 20);
    padding-right: calc(var(--vw) * 20);
  }
}

.ez-toc-title::after {
  transition: all 0.35s ease;
}

div#ez-toc-container {
  border: 1px solid var(--gray-200);
  border-radius: calc(var(--vw) * 8);
  margin-bottom: calc(var(--vw) * 16);
  display: block;
  width: auto;
  background-color: var(--white);
  margin-top: 10px;
}

div#ez-toc-container div.ez-toc-title-container {
  position: relative;
}

div#ez-toc-container p.ez-toc-title {
  margin-bottom: 0 !important;
  padding: calc(var(--vw) * 16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
}

div#ez-toc-container p.ez-toc-title::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M12 13.172l4.95-4.95 1.414 1.414L12 16 5.636 9.636 7.05 8.222z' fill='rgba(25,25,25,1)'/%3E%3C/svg%3E");
  background-position: center;
  width: calc(var(--vw) * 24);
  height: calc(var(--vw) * 24);
  display: flex;
}

/* div#ez-toc-container:hover,
div#ez-toc-container.active {
  border-color: hsla(var(--brand), 1);
} */

/* div#ez-toc-container:hover .ez-toc-title,
div#ez-toc-container.active .ez-toc-title {
  color: hsla(var(--brand), 1);
} */

div#ez-toc-container p.ez-toc-title {
  font-weight: 400;
  font-size: 100%;
}

a.ez-toc-heading-2 {
  text-decoration: none;
  outline: 0;
  color: var(--black) !important;
}

div#ez-toc-container.active .ez-toc-title::after {
  transform: rotate(180deg);
}

div#ez-toc-container.active nav {
  padding: 0 calc(var(--vw) * 20) calc(var(--vw) * 20);
}

span.ez-toc-title-toggle,
span.ez-toc-title-toggle a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  cursor: pointer;
  border-radius: calc(var(--vw) * 8);
  color: var(--black);
}

span.ez-toc-icon-toggle-span {
  display: none;
}

a.ez-toc-btn-default {
  border: none;
  background-image: none;
  background-repeat: no-repeat;
}

/* a.ez-toc-btn-default:hover {
  background-color: rgba(0, 0, 0, 0);
} */

a.ez-toc-toggle i.ez-toc-glyphicon {
  width: 0;
  height: 0;
  font-size: 0px;
}

div#ez-toc-container ul.ez-toc-list {
  margin-top: 0em;
  margin-bottom: 0em;
  list-style-type: disc;
  list-style-position: outside;
  padding-left: calc(var(--vw) * 24);
  overflow: visible !important;
}

#ez-toc-container ul li {
  list-style: disc;
  overflow: visible !important;
}

#commentform {
  display: flex;
  flex-wrap: wrap;
}

#commentform p {
  width: 100%;
}

#commentform p:not(:last-child) {
  margin: 0 0 calc(var(--vw) * 20);
}

#commentform p:first-child {
  font-size: calc(var(--vw) * 16);
  line-height: 1.6;
}

#commentform label {
  font-size: calc(var(--vw) * 14);
  line-height: calc(var(--vw) * 22);
  color: var(--gray-400);
  font-weight: 400;
}

#commentform p input[type="text"],
#commentform p textarea {
  display: block;
  width: 100%;
  padding: calc(var(--vw) * 9) calc(var(--vw) * 12);
  font-size: calc(var(--vw) * 16);
  font-family: inherit;
  color: var(--gray-600);
  background: var(--gray-50);
  border: 1.5px solid transparent;
  border-radius: calc(var(--vw) * 4);
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}

#commentform input[type="checkbox"] {
  position: absolute;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

#commentform input[type="checkbox"] + span,
input[type="radio"] + span {
  display: inline-flex;
  align-items: center;
  user-select: none;
  cursor: pointer;
}

#commentform input[type="checkbox"] + span::before {
  content: "";
  flex-shrink: 0;
  width: calc(var(--vw) * 20);
  height: calc(var(--vw) * 20);
  border: 1.5px solid var(--gray-50);
  border-radius: 2px;
  margin-right: calc(var(--vw) * 8);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s, border 0.2s;
}

#commentform input[type="checkbox"]:checked + span::before {
  border-color: var(--tertiary-color);
  background: var(--white);
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpolyline points='1 6.5 4 9.5 11 2.5' fill='none' stroke='%2305BED6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
}

#commentform p.form-submit input[type="submit"] {
  display: block;
  width: 100%;
  padding: calc(var(--vw) * 14) 0;
  font-size: calc(var(--vw) * 16);
  font-weight: 700;
  color: var(--black);
  background-color: var(--secondary-color);
  border: none;
  border-radius: calc(var(--vw) * 8);
  cursor: pointer;
  transition: background-color 0.18s ease;
}

#commentform p.comment-form-author {
  width: 49%;
  margin-right: 2%;
  display: flex;
  flex-direction: column;
}

#commentform p.comment-form-email {
  width: 49%;
}

#commentform p.comment-form-comment {
  display: flex;
  flex-direction: column;
}

#commentform p.form-submit input[type="submit"] {
  margin-top: 0;
}

.c-blog__sidebar__wrapper {
  position: sticky;
  top: calc(var(--vw) * 24);
  margin-bottom: calc(var(--vw) * 24);
}

.c-blog__sidebar__wrapper .sidebar--card {
  margin-top: calc(var(--vw) * 24);
  margin-bottom: calc(var(--vw) * 24);
  padding-top: calc(var(--vw) * 16);
  padding-bottom: calc(var(--vw) * 16);
  box-shadow: 0px 10px 15px -3px #0000001a;
  border-radius: calc(var(--vw) * 12);
}

.c-blog__sidebar__wrapper a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-blog__sidebar__wrapper .sidebar--card a {
  align-items: center;
}

.c-blog__sidebar__wrapper .sidebar--card__circle {
  border-bottom: 1px solid var(--gray-100);
}

.c-blog__sidebar__wrapper .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--vw) * 10);
  border-radius: calc(var(--vw) * 8);
  font-size: calc(var(--vw) * 16);
  padding: calc(var(--vw) * 12);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s;
  -webkit-user-select: none;
  user-select: none;
  color: var(--black);
  background-color: var(--secondary-color);
  margin-top: calc(var(--vw) * 16);
}

.c-blog__sidebar__wrapper {
  p {
    font-size: calc(var(--vw) * 24);
    line-height: calc(var(--vw) * 28);
    font-weight: 700;
    color: var(--black);
    margin-bottom: calc(var(--vw) * 16);
  }

  p:not(:last-child) {
    margin-bottom: calc(var(--vw) * 20);
  }

  ul {
    display: flex;
    flex-direction: column;
    gap: calc(var(--vw) * 8);
  }

  a {
    font-size: calc(var(--vw) * 16);
    line-height: calc(var(--vw) * 24);
    font-weight: 400;
    color: var(--gray-600);
  }
}

.c-blog__sidebar__wrapper > .wp-block-group {
  margin-bottom: calc(var(--vw) * 24);
}

.c-blog__sidebar__wrapper .widgettitle {
  margin-bottom: calc(var(--vw) * 16);
  font-size: calc(var(--vw) * 24);
  line-height: calc(var(--vw) * 28);
  font-weight: 700;
  color: var(--black);
}

.c-blog__sidebar__wrapper .menu-sidebar-categorias-container a {
  align-items: flex-start;
}
