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;
}

/* ===== menu mobile (dropdown compacto, redesign 2026) ===== */
@media screen and (max-width: 767px) {
  header {
    opacity: 1;
    transition: background-color 0.3s ease;
  }
  header:has(#control-nav:checked) {
    background: #575656;
  }
  header .logo {
    width: auto;
  }
  header .logo .logoMenu {
    padding: 1.2rem 2rem;
  }
  header .logo .logoMenu img {
    width: 8rem;
    height: auto;
  }
  header .control-nav,
  header .control-nav-close {
    display: none;
  }
  header .menuicon {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 2.4rem;
    height: auto;
    cursor: pointer;
    z-index: 12;
  }
  header .menuicon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    margin-top: 0.6rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  header .menuicon span:first-child {
    margin-top: 0;
  }
  header nav {
    position: fixed;
    top: 6rem;
    left: 0;
    right: 0;
    width: 100%;
    background: #575656;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 8;
    transition: opacity 0.3s ease;
  }
  header nav ul {
    display: flex;
    flex-direction: column;
    padding: 2.4rem 3.5rem 3rem;
    margin: 0;
  }
  header nav ul li {
    text-align: left;
    margin: 0 0 1.8rem;
    width: auto;
    font-size: inherit;
    align-self: flex-start;
  }
  header nav ul li:last-child {
    margin-bottom: 0;
  }
  header nav ul li a {
    display: inline-block;
    font-family: "skolar-sans-latin", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #fff;
    opacity: 0.7;
    padding-left: 1.5rem;
  }
  header nav ul li.menuactive {
    position: relative;
  }
  header nav ul li.menuactive::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #d9a522;
  }
  header nav ul li.menuactive a {
    font-weight: 500;
    opacity: 1;
  }
  #control-nav:checked ~ nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  #control-nav:checked ~ .menuicon span:nth-child(1) {
    transform: translateY(0.8rem) rotate(45deg);
  }
  #control-nav:checked ~ .menuicon span:nth-child(2) {
    opacity: 0;
  }
  #control-nav:checked ~ .menuicon span:nth-child(3) {
    transform: translateY(-0.8rem) rotate(-45deg);
  }
}
/* ===== 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: 9rem 7% 6rem;
  }
  .single-post2026 .voltar {
    margin-bottom: 3rem;
    font-size: 1.2rem;
    gap: 7px;
  }
  .single-post2026 h1 {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
  .single-post2026 .capa {
    margin-bottom: 3.4rem;
  }
  .single-post2026 .capa img {
    aspect-ratio: 316/178;
    height: auto;
    object-fit: cover;
  }
  .single-post2026 .conteudo p {
    font-size: 1.6rem;
    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: 1.6rem;
    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;
  }
}
/* ===== footer (mesmo do publicacoes2026) ===== */
footer {
  background-color: #171615;
  color: #ffffff;
  width: 100vw;
  margin: auto;
}
footer .footer-container {
  display: flex;
  flex-direction: column;
  width: 80vw;
  margin: 0 auto;
}
footer .footer-container .logo-footer {
  margin-bottom: 7rem;
  margin-top: 8rem;
  width: 276px;
}
footer .footer-container .top {
  display: flex;
  justify-content: space-between;
}
footer .footer-container .top p, footer .footer-container .top a {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 120%;
}
footer .footer-container .top .left {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
footer .footer-container .top .left a {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
footer .footer-container .top .right {
  display: flex;
  gap: 5rem;
}
footer .footer-container .top .right .menu {
  display: flex;
  gap: 5rem;
}
footer .footer-container .top .right .menu div {
  display: flex;
  flex-direction: column;
}
footer .footer-container .top .right .menu div a {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 200%;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
footer .footer-container .top .right .social-buttons {
  display: flex;
  justify-content: end;
  margin-top: auto;
  gap: 2.4rem;
}
footer .footer-container .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 .footer-container {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 85vw;
    margin: 0 auto;
  }
  footer .footer-container .logo-footer {
    margin: 5rem 0 5.4rem;
    width: 166px;
  }
  footer .footer-container .top {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  footer .footer-container .top p, footer .footer-container .top a {
    font-size: 1.5rem;
  }
  footer .footer-container .top .left {
    gap: 9px;
  }
  footer .footer-container .top .left a {
    gap: 1rem;
  }
  footer .footer-container .top .left a svg {
    width: 15px;
    height: 15px;
  }
  footer .footer-container .top .right {
    margin-top: 3.6rem;
    flex-direction: column;
    gap: 4rem;
  }
  footer .footer-container .top .right .menu {
    gap: 4rem;
  }
  footer .footer-container .top .right .menu div a {
    font-size: 1.2rem;
  }
  footer .footer-container .top .right .social-buttons {
    margin-top: 0;
    gap: 1.6rem;
    justify-content: flex-start;
  }
  footer .footer-container .top .right .social-buttons img {
    height: 16px;
  }
}
.zap {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 999;
  cursor: pointer;
}
.zap img {
  height: 65px;
}

@media screen and (max-width: 600px) {
  .zap {
    right: 20px;
    bottom: 20px;
  }
  .zap img {
    height: 40px;
    width: 40px;
  }
}

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