strong {
  font-weight: bold;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*:focus {
  outline: 0;
}

html, body, #root {
  height: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: "skolar-sans-latin", sans-serif;
  background-color: #fff;
}

p {
  font-size: 1.8rem;
}

h1 {
  font-size: 4.8rem;
}

a {
  text-decoration: none;
  font-size: 1.6rem;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

.only-mobile {
  display: none !important;
}

@media (orientation: portrait) and (max-width: 600px) {
  .only-mobile {
    display: block !important;
  }
  .only-desktop {
    display: none !important;
  }
}
/* ===== header (mesmo do publicacoes2026) ===== */
#control-nav {
  display: none;
}

header {
  min-height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: #3c3c3c;
  z-index: 9;
  display: flex;
  transition: top 0.3s;
  opacity: 0.9;
}

header .logo {
  display: flex;
  place-items: center;
  justify-content: center;
}

header .logo .logoMenu {
  padding: 20px 50px;
  z-index: 100;
}

header .logo .logoMenu img {
  width: 166px;
}

header nav {
  width: 100%;
  align-self: center;
  opacity: 1;
}

header nav ul {
  display: flex;
  justify-content: flex-end;
  margin-right: 5rem;
}

header nav ul li {
  margin-left: 4rem;
  align-self: center;
}

header nav ul li a {
  color: #c8b08b;
  font-weight: 700;
  transition: color 0.2s;
}

header nav ul li a:hover {
  color: #f5f5f7;
}

@media screen and (max-width: 767px) {
  header {
    opacity: 1;
  }
  header .control-nav {
    position: absolute;
    right: 20px;
    top: 20px;
    display: block;
    width: 30px;
    padding: 5px 0;
    border: solid #c8b08b;
    border-width: 3px 0;
    z-index: 6;
    cursor: pointer;
  }
  header .control-nav:before {
    content: "";
    display: block;
    height: 3px;
    background: #c8b08b;
  }
  header .control-nav-close {
    position: fixed;
    right: 0;
    top: 0;
    width: 80px;
    height: 50px;
    display: block;
    z-index: 3;
    transition: all 500ms ease;
    transform: translate(100%, 0);
  }
  header nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #0b0b0b;
    overflow-x: auto;
    z-index: 2;
    transition: all 500ms ease;
    transform: translate(100%, 0);
  }
  header nav ul {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 5rem;
  }
  header nav ul li {
    text-align: left;
    margin-left: 0;
    width: 100%;
    font-size: 40px;
    margin-bottom: 1rem;
  }
  header nav ul li a {
    color: #c8b08b;
  }
  .active span:nth-child(1) {
    animation: ease 0.7s top forwards;
    background: #c8b08b;
  }
  .not-active span:nth-child(1) {
    animation: ease 0.7s top-2 forwards;
  }
  .active span:nth-child(2) {
    animation: ease 0.7s scaled forwards;
  }
  .not-active span:nth-child(2) {
    animation: ease 0.7s scaled-2 forwards;
  }
  .active span:nth-child(3) {
    animation: ease 0.7s bottom forwards;
    background: #c8b08b;
  }
  .not-active span:nth-child(3) {
    animation: ease 0.7s bottom-2 forwards;
  }
  @keyframes top {
    0% {
      top: 0;
      transform: rotate(0);
    }
    50% {
      top: 18px;
      transform: rotate(0);
    }
    100% {
      top: 18px;
      transform: rotate(45deg);
    }
  }
  @keyframes top-2 {
    0% {
      top: 18px;
      transform: rotate(45deg);
    }
    50% {
      top: 18px;
      transform: rotate(0deg);
    }
    100% {
      top: 0;
      transform: rotate(0deg);
    }
  }
  @keyframes bottom {
    0% {
      bottom: 0;
      transform: rotate(0);
    }
    50% {
      bottom: 18px;
      transform: rotate(0);
    }
    100% {
      bottom: 12px;
      width: 70%;
      top: -4px;
      transform: rotate(135deg);
    }
  }
  @keyframes bottom-2 {
    0% {
      bottom: 3px;
      transform: rotate(135deg);
    }
    50% {
      bottom: 3px;
      transform: rotate(0);
    }
    100% {
      bottom: 0;
      transform: rotate(0);
    }
  }
  @keyframes scaled {
    50% {
      transform: scale(0);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes scaled-2 {
    0% {
      transform: scale(0);
    }
    50% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  header .menuicon {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translate(-50%, -50%);
    width: 80px;
    cursor: pointer;
    z-index: 6;
  }
  header .menuicon span {
    display: block;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    background: #c8b08b;
    height: 6px;
    transition: all 0.3s;
    position: relative;
    margin-top: 4px;
  }
  header .menuicon span:nth-child(1) {
    width: 70%;
  }
  header .menuicon span:nth-child(2) {
    width: 70%;
  }
  header .menuicon span:nth-child(3) {
    width: 35%;
  }
}
#control-nav:checked ~ .control-nav-close {
  transform: translate(0, 0);
}

#control-nav:checked ~ nav {
  transform: translate(0, 0);
}

/* ===== artigo (tema claro) ===== */
.single-post2026 {
  background: rgba(23, 22, 21, 0.1);
  padding: 14.5rem 0 8rem;
}

.single-post2026-container {
  max-width: 84.6rem;
  margin: 0 auto;
}

.single-post2026 .voltar {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 6rem;
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #171615;
}

.single-post2026 h1 {
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 112%;
  color: #171615;
  margin-bottom: 5rem;
}

.single-post2026 .capa {
  margin-bottom: 6rem;
}
.single-post2026 .capa img {
  display: block;
  width: 100%;
  height: 47.6rem;
  object-fit: cover;
}

.single-post2026 .conteudo {
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 130%;
  color: #171615;
}
.single-post2026 .conteudo p {
  font-size: 2rem;
  line-height: 130%;
  margin-bottom: 2rem;
}
.single-post2026 .conteudo strong, .single-post2026 .conteudo b {
  font-weight: 700;
}
.single-post2026 .conteudo ul {
  list-style: disc;
  margin: 0 0 2rem 3rem;
}
.single-post2026 .conteudo ul li {
  font-size: 2rem;
  line-height: 130%;
  margin-bottom: 0.8rem;
}
.single-post2026 .conteudo a {
  font-size: inherit;
  color: #171615;
  text-decoration: underline;
}
.single-post2026 .conteudo img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 600px) {
  .single-post2026 {
    padding: 10rem 0 6rem;
  }
  .single-post2026 h1 {
    font-size: 2.4rem;
  }
  .single-post2026 .capa img {
    height: 24rem;
  }
}
/* ===== footer (mesmo do publicacoes2026) ===== */
footer {
  background-color: #0b0b0b;
}
footer .footer-container {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  width: 80vw;
  margin: auto;
}
footer .logo-footer {
  margin-bottom: 7rem;
  margin-top: 8rem;
  width: 276px;
}
footer .top {
  display: flex;
  justify-content: space-between;
}
footer .top p, footer .top a {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 120%;
}
footer .top .left {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
footer .top .left a {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
footer .top .right {
  display: flex;
  gap: 5rem;
}
footer .top .right .menu {
  display: flex;
  gap: 5rem;
}
footer .top .right .menu div {
  display: flex;
  flex-direction: column;
}
footer .top .right .menu div a {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 200%;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
footer .top .right .social-buttons {
  display: flex;
  justify-content: end;
  margin-top: auto;
  gap: 2.4rem;
}
footer .top .right .social-buttons img {
  margin: 0;
}

footer .bottom {
  width: 80vw;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #fff;
  padding-top: 0.8rem;
  padding-bottom: 1.8rem;
  margin-top: 4rem;
}

footer .bottom p {
  font-size: 1.2rem;
}

footer a {
  color: #fff;
}

@media screen and (max-width: 600px) {
  footer {
    flex-direction: column;
    justify-content: center;
    place-items: center;
    width: 100vw;
  }
  footer .top {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    place-items: center;
  }
  footer .top .right {
    margin-top: 7rem;
  }
}
.zap {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 999;
  cursor: pointer;
}
.zap img {
  height: 65px;
}

/*# sourceMappingURL=single-post2026.css.map */
