@charset "UTF-8";
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;
}

main {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

body, input, button, textarea {
  font-family: "skolar-sans-latin", sans-serif;
}

p {
  font-size: 1.8rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 2.2rem;
}

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 casos2026) ===== */
#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);
  }
}
/* ===== conteúdo (tema claro) ===== */
.publicacoes2026 {
  background: rgba(23, 22, 21, 0.08);
  padding: 18rem 0 8rem;
}
.publicacoes2026 > h2 {
  max-width: 119.4rem;
  margin: 0 auto 6rem;
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 600;
  font-size: 4.6rem;
  line-height: 1;
  color: #0b0b0b;
}

.publicacoes2026-lista {
  max-width: 119.4rem;
  margin: 0 auto;
}

.publicacoes2026-lista .post {
  display: flex;
  gap: 5rem;
  padding: 3rem 0 6rem;
  border-top: 1px solid #171615;
}
.publicacoes2026-lista .post:last-child {
  border-bottom: 1px solid rgba(23, 22, 21, 0.15);
}
.publicacoes2026-lista .post img {
  width: 48rem;
  height: 27rem;
  object-fit: cover;
}
.publicacoes2026-lista .post .texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.publicacoes2026-lista .post h3 {
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 112%;
  color: #171615;
}
.publicacoes2026-lista .post .leia-mais {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.publicacoes2026-lista .post .leia-mais p {
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  color: #171615;
}
.publicacoes2026-lista .post .leia-mais .seta {
  display: inline-flex;
  width: 2.9rem;
}

@media screen and (max-width: 900px) {
  .publicacoes2026-lista .post {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .publicacoes2026-lista .post img {
    flex: 1;
    width: 100%;
    height: 22rem;
  }
}
@media screen and (max-width: 600px) {
  .publicacoes2026 {
    padding: 10rem 7% 5rem;
  }
  .publicacoes2026 > h2 {
    max-width: 100%;
    margin: 0 auto 2.5rem;
    font-size: 2rem;
  }
  .publicacoes2026-lista {
    max-width: 100%;
    margin: 0 auto;
  }
  .publicacoes2026-lista .post {
    display: flex;
    gap: 2rem;
    padding: 2.6rem 0 3rem;
    border-top: 1px solid #171615;
  }
  .publicacoes2026-lista .post:last-child {
    border-bottom: 1px solid rgba(23, 22, 21, 0.15);
  }
  .publicacoes2026-lista .post img {
    aspect-ratio: 316/178;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .publicacoes2026-lista .post .texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.3rem;
  }
  .publicacoes2026-lista .post h3 {
    font-size: 1.6rem;
  }
  .publicacoes2026-lista .post .leia-mais {
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
    justify-content: flex-start;
  }
  .publicacoes2026-lista .post .leia-mais p {
    font-size: 1.5rem;
  }
  .publicacoes2026-lista .post .leia-mais .seta {
    width: 15px;
    height: 15px;
    line-height: 1;
  }
  .publicacoes2026-lista .post .leia-mais .seta svg {
    width: 100%;
    height: 100%;
  }
}
.publicacoes2026-paginacao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 4rem;
}
.publicacoes2026-paginacao .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #171615;
}
.publicacoes2026-paginacao .page-numbers.current {
  background: #d9a522;
  color: #fff;
}
.publicacoes2026-paginacao .page-numbers.dots {
  background: none;
}
.publicacoes2026-paginacao .voltar-topo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-left: 1.6rem;
  border-radius: 50%;
  border: 1px solid #171615;
  color: #171615;
  font-size: 1.6rem;
  transition: filter 0.2s;
}
.publicacoes2026-paginacao .voltar-topo:hover {
  filter: brightness(0.8);
}

/* ===== footer (mesmo do casos2026) ===== */
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=publicacoes2026.css.map */
