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

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

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

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);
  }
}
/* ===== hero de contato ===== */
.contato2026-hero {
  display: flex;
  align-items: flex-start;
  gap: 8rem;
  max-width: 120rem;
  width: 120rem;
  margin: 0 auto;
  padding: 19rem 0rem 14rem;
  justify-content: space-between;
}
.contato2026-hero .esquerda {
  width: 51rem;
  color: #fff;
}
.contato2026-hero .esquerda h1 {
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 600;
  font-size: 4.6rem;
  line-height: 1;
  margin-bottom: 4rem;
}
.contato2026-hero .esquerda p {
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.3;
  max-width: 51rem;
  margin-bottom: 3.5rem;
}
.contato2026-hero .direita {
  aspect-ratio: 540/413;
  border-radius: 2rem;
  overflow: hidden;
  width: 54rem;
}
.contato2026-hero .direita iframe {
  display: block;
}

.contato2026-hero .linha {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-family: "skolar-sans-latin", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 130%;
}
.contato2026-hero .linha:last-child {
  margin-bottom: 0;
}
.contato2026-hero .linha > img {
  width: 3.6rem;
  height: 3.6rem;
  flex-shrink: 0;
}

@media screen and (max-width: 900px) {
  .contato2026-hero {
    flex-direction: column;
    padding-top: 12rem;
  }
  .contato2026-hero .direita {
    width: 100%;
    height: 30rem;
  }
}
@media screen and (max-width: 600px) {
  .contato2026-hero {
    gap: 4.5rem;
    max-width: 100%;
    width: 85%;
    margin: 0 auto;
    padding: 11.5rem 0rem 6rem;
  }
  .contato2026-hero .esquerda {
    width: 100%;
  }
  .contato2026-hero .esquerda h1 {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 2.3rem;
  }
  .contato2026-hero .esquerda p {
    font-size: 1.6rem;
    line-height: 1.3;
    max-width: 100%;
    margin-bottom: 3rem;
  }
  .contato2026-hero .direita {
    aspect-ratio: 316/242;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
  }
  .contato2026-hero .direita iframe {
    display: block;
  }
  .contato2026-hero .linha {
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
  }
  .contato2026-hero .linha > img {
    width: 2.6rem;
    height: 2.6rem;
    flex-shrink: 0;
  }
}
/* ===== faixa de fotos ===== */
.contato2026-fotos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.contato2026-fotos img {
  width: 100%;
  height: 40rem;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 600px) {
  .contato2026-fotos {
    grid-template-columns: 1fr;
  }
  .contato2026-fotos img {
    aspect-ratio: 36/40;
    height: auto;
    width: 100%;
  }
}
/* ===== footer (mesmo do publicacoes2026) ===== */
footer {
  background-color: #171615;
  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;
    align-items: flex-start;
    width: 85vw;
    margin: 0 auto;
  }
  footer .logo-footer {
    margin: 5rem 0 5.4rem;
    width: 166px;
  }
  footer .top {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  footer .top p, footer .top a {
    font-size: 1.5rem;
  }
  footer .top .left {
    gap: 9px;
  }
  footer .top .left a {
    gap: 1rem;
  }
  footer .top .left a svg {
    width: 15px;
    height: 15px;
  }
  footer .top .right {
    margin-top: 3.6rem;
    flex-direction: column;
    gap: 4rem;
  }
  footer .top .right .menu {
    gap: 4rem;
  }
  footer .top .right .menu div a {
    font-size: 1.2rem;
  }
  footer .top .right .social-buttons {
    margin-top: 0;
    gap: 1.6rem;
    justify-content: flex-start;
  }
  footer .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=contato2026.css.map */
