:root {
  --color-white-100: hsl(0, 0%, 100%);
  --color-white-200: hsl(0, 0%, 95%);
  --color-white-300: hsl(0, 0%, 85%);
  --color-white-400: hsl(0, 0%, 75%);
  --color-white-500: hsl(0, 0%, 65%);
  --color-white-600: hsl(0, 0%, 55%);
  --color-black-100: hsl(210, 17%, 12%);
  --color-black-200: hsl(210, 17%, 10%);
  --color-black-300: hsl(210, 16%, 8%);
  --color-black-400: hsl(210, 16%, 6%);
  --color-black-500: hsl(210, 15%, 4%);
  --color-black-600: hsl(210, 15%, 2%);
  --text-tiny: clamp(0.84rem, calc(0.12vw + 0.8rem), 0.89rem);
  --text-small: clamp(0.93rem, calc(0.13vw + 0.91rem), 1rem);
  --text-base: clamp(1.05rem, calc(0.15vw + 1.01rem), 1.12rem);
  --text-medium: clamp(1.18rem, calc(0.17vw + 1.14rem), 1.26rem);
  --text-large: clamp(1.32rem, calc(0.19vw + 1.28rem), 1.41rem);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.header li {
  text-wrap: pretty;
  line-height: inherit;
  word-wrap: break-word;
}


.header .container {
  max-width: 1440px;
  height: auto;
  margin-inline: auto;
  padding-inline: 2rem 1.3rem;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-tiny {
  font-size: var(--text-tiny);
}

.text-small {
  font-size: var(--text-small);
}

.text-base {
  font-size: var(--text-base);
}

.text-medium {
  font-size: var(--text-medium);
}

.text-large {
  font-size: var(--text-large);
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semi {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: auto;
  background-color: #5b8f22;
}

.audiencia,
.formatos,
.saleshouse {
  text-transform: uppercase;
  font-family: "proxima-nova", sans-serif;
  font-size: 13.9px;
}

.menu-item.formatos,
.menu-item.audiencia,
.menu-item.saleshouse {
  pointer-events: none;
  cursor: default;
  background-color: #8cb461;
  color: #fff;
}

.menu-item.formatos a,
.menu-item.audiencia a,
.menu-item.saleshouse a {
  pointer-events: none;
  /* Garante que links dentro dessas classes também não sejam clicáveis */
}

.header .navbar {
  width: 100%;
  height: 3.4rem;
  margin-inline: auto;
  overflow: hidden;

}

.header .navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  height: 100%;
}

.header .navbar-block {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  overflow: auto;
  pointer-events: none;
  background-color: var(--color-white-100);
  transition: opacity 0.4s ease;
}

.header .navbar-block.is-active {
  opacity: 1;
  pointer-events: initial;
}

@media screen and (min-width: 62rem) {
  .header .navbar {
    display: flex;
    justify-content: space-between;
  }

  .header .navbar-block {
    position: initial;
    height: initial;
    opacity: 1;
    overflow: auto;
    pointer-events: visible;
    background: none;
    transition: none;
  }
}

.menuTop {
  padding-block: 0rem;
  padding-inline: auto;
  margin: 0em 0;
}

.menu-link {
  font-size: var(--text-base);
  font-weight: 500;
  line-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  color: var(--color-black-500);
  transition: color 0.3s ease;
}

@media screen and (min-width: 62rem) {
  .menuTop {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    height: 100%;
    padding: unset;
  }

  .menu-item {
    display: flex;
    cursor: pointer;
    padding-inline: 0.5rem;
    align-items: center;
  }

  .menu-link {
    padding: unset;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 1.5rem;
  height: 1rem;
  border: none;
  outline: none;
  visibility: visible;
}

.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.15px;
  opacity: 1;
  rotate: 0deg;
  border-radius: 0.15rem;
  background-color: #ffffff;
  transition: all 0.3s ease;
}


.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active>.burger-line:nth-child(1) {
  top: 0.5rem;
  rotate: 135deg;
}

.burger.is-active>.burger-line:nth-child(2) {
  opacity: 0;
}

.burger.is-active>.burger-line:nth-child(3) {
  top: 0.5rem;
  rotate: -135deg;
}

@media screen and (min-width: 62rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

@media screen and (max-width: 990px) {
  .container {
    padding-inline: 1.2rem 1.3rem;
  }

  .navbar img {
    max-width: 50% !important;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
}


.header .navbar a {
  color: #ffffff;
  text-transform: uppercase;
  font-family: "proxima-nova", sans-serif;
  font-size: 13.9px;
}

.header .navbar a:hover {
  text-decoration: none;
}

.header .navbar li:hover {
  text-decoration: none;
  color: rgb(255, 255, 255);
  background: rgb(78, 122, 29);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1);
  -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
  transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
}

.header .navbar li:hover,
.header .navbar li {
  margin: 0em 0;
}

.header .navbar img {
  max-width: 70%;
}

.header .navbar .is-active a {
  color: #343434;
  font-weight: 500;
  text-transform: uppercase;
}

.header .navbar .is-active li:hover a {
  color: #ffffff;
}

.header .navbar .is-active ul.menuTop {
  padding: 0 0 0 0em;
}

.header .navbar .is-active li:hover,
.header .navbar .is-active li {
  margin: 0em 0;
  padding: 1em;
  cursor: pointer;
}

.header .navbar .is-active li:hover,
.header .navbar .is-active li.is-active {
  text-decoration: none;
  color: rgb(255, 255, 255);
  background-color: #8cb461;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -ms-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1);
  -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
  transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
}

.header .navbar .is-active img {
  max-width: 50%;
}

.header {
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.header::before,
.header:after,
header {
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.menuSticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, top 0.3s ease;
}

.green {
  background-color: #5b8f22;
  transition: background-color 0.3s ease, top 0.3s ease;
}