:root {
  --black-color: #111;
  --primary-color: #00CC73;
  --white-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h3 {
  color: #111;
  font-family: "Roboto Flex";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
  letter-spacing: 0.84px;
  padding-bottom: 24px;
}

p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0%;  
}

li {
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0%;  
}

.space-margin {
  margin-bottom: 56px;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.content-text {
  width: 100%;
  max-width: 696px;
  margin: 0 auto;
}

.text {
  margin: 0 24px;
}

@media(max-width: 550px){
  .text {
    padding-top: 15%;
  }
}

.title {
  color: #111;
  font-family: "Roboto Flex";
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 1.32px;
  padding-top: 20%;
  padding-bottom: 56px;

  font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;

  display: flex;
  gap: 10px;
  align-self: stretch;
}

/* HEADER */
.header {
  padding: 20px 0;
  position: fixed;
  z-index: 10;
}

/* Seletor para a linguagem */
.language-selector {
  display: flex;
  justify-content: space-between;
  top: 0px;
  right: 4px;
  z-index: 1000;
  position: relative;
}

.lang-btn {
  background-color: #00cc7400;
  color: #71af94;
  border: none;
  padding: 10px 9px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 16px;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

.no-scroll {
  overflow-y: hidden;
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 30px;
  background-color: #FFFFFF1A;
  z-index: 10;
  border-radius: 24px;
}

@media (min-width: 200px) {
  .header__content {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    padding: 12px 30px;
    border-radius: 24px;
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  .header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 30%);
    z-index: 10;
    border-radius: 24px;
  }
}

.glassmorphism-effect {
  left: 0;
  backdrop-filter: blur(5px);
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF1A;
  z-index: -1;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__logo {
  z-index: 1000;
  position: relative;
}

#img-logo-nav {
  transition: opacity 1s ease-in-out;
}

.navbar__toggle-container {
  height: 40px;
  cursor: pointer;
  display: flex;
  z-index: 1000;
  align-items: center;
}

.navbar__toggle {
  border: 0;
  position: relative;
}

/* Navbar Button && Variable Colors Navbar */
.navbar__toggle,
.navbar__toggle::before,
.navbar__toggle::after {
  display: block;
  background-color: #00CC73;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}


/* COR QUANDO A NAVBAR ESTÁ FECHADA */
.lang-btn {
  color: #00CC73;
  opacity: 50%;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}

.lang-btn.selected {
  opacity: 100%;
}

.navbarActive button {
  color: #ffffff;
  opacity: 50%;
}

.lang-btn.selected .navbarActive {
  opacity: 100%;
}

/* END Navbar Button Variable Colors */
.navbar__toggle::before {
  content: '';
  margin-top: -8px;
  position: absolute;
  left: 0;
}

.navbar__toggle::after {
  content: '';
  margin-top: 4px;
  position: absolute;
  left: 0;
}

.navbar__toggle.toggle::before {
  margin-top: 0px;
  transform: rotate(45deg);
  background-color: #fff;
}

.navbar__toggle.toggle {
  background: rgba(255, 255, 255, 0);
}

.navbar__toggle.toggle::after {
  margin-top: 0px;
  transform: rotate(-45deg);
  background-color: #fff;
}

.img-container {
  display: flex;
  justify-content: center;
  max-width: 696px;
  width: 100%;
  height: 100%;
  max-height: 587px;
  overflow: hidden;
}

.img-menu {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

@keyframes navbarOn {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes navbarOff {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

.nav-custom {
  background-color: #00CC73;
  width: 100vw;
  position: fixed;
  left: 0;
  z-index: 6;
  height: 100%;
  top: 0;
}

.navbar.show {
  animation: navbarOn 0.75s ease-in-out forwards;
}

.navbar.hide {
  animation: navbarOff 0.75s ease-in-out forwards;
}


.navbar__menu {
  max-width: 1427px;
  width: 100%;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.menu__items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  height: 41%;
  justify-content: flex-start;
  margin-top: 35%;

}

.menu__item {
  list-style: none;
}

.menu__item:hover,
.menu__item:active {
  background: rgb(193, 255, 178);
  background-size: 100%;
  background-repeat: repeat;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.icon-menu:hover,
.icon-menu:active {
  background: rgb(202, 255, 200);
  background-size: 100%;
  background-repeat: repeat;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.menu__socials a {
  text-decoration: none;
}


.menu__link {
  text-decoration: none;
  color: var(--white-color);
  font-family: Roboto Flex;
  font-size: 30px;
  font-weight: 600;
  line-height: 127%;
  letter-spacing: 0.03em;
  text-align: center;
  font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;

}


.menu__info {
  margin-left: 34px;
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
}


.menu__socials {
  max-width: 339px;
  width: 100%;
  padding: 24px;
  display: flex;
  gap: 10px;
  border-radius: 16px;
  align-items: center;
  border: solid 2px #fff;
  justify-content: space-evenly;

}

.menu__socials i {
  width: 100%;
  max-width: 44px;
  display: flex;
  justify-content: flex-end;
  max-height: 44px;
  height: 100%;
  color: #fff;
}

.menu__socials p {
  font-family: Roboto Flex;
  font-size: 24px;
  font-weight: 800;
  line-height: 26.4px;
  letter-spacing: 0.03em;
  font-variation-settings: 'GRAD' 0, 'wdth' 40, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
  color: #fff;
  text-align: left;
  margin: 0;
  text-wrap: nowrap;
}

@media (min-width: 200px) {
  .navbar__menu {
    flex-direction: column-reverse;
  }

  .img-menu {
    max-width: 300px;
    width: 100%;
    margin: 0 15px;

    max-height: 300px;
    height: 100%;
  }

  .menu__socials p {
    font-size: 17px;
  }

  .menu__socials i {
    align-items: center;
    font-size: 18px;
  }

  .menu__socials {
    max-width: 369px;
    width: 100%;
    padding: 11px;
    gap: 11px;
    border-radius: 9px;
  }

}

@media (min-width: 768px) {
  .navbar__menu {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin: 10px auto;
  }

  .img-menu {
    max-width: 696px;
    width: 100%;
    height: 100%;
    max-height: 696px;
  }

  .header.menu-active {
    background-color: unset;
  }

  .navbar__toggle-container {
    z-index: 7;
    position: relative;
  }

  .navbar__toggle {
    z-index: 6;
  }

  .menu__items {
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    height: 100%;
    margin: 0 20px;
    margin-bottom: -60px;
  }

  .menu__item {
    line-height: 1.2.3;
  }

  .menu__link {
    font-size: 2.5rem;
    text-wrap: nowrap;
  }


  .menu__socials {
    margin-right: 0;
    max-width: 339px;
    width: 100%;
    padding: 24px;
    display: flex;
    gap: 10px;
    border-radius: 16px;
    align-items: center;
    border: solid 2px #fff;
  }

  .menu__socials i {
    color: var(--white-color);
  }

  .menu__socials p {
    color: var(--white-color);
    font-size: 24px;
  }

  .menu__info {
    margin: 42px 42px 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

}

@media (min-width: 1024px) {
  .menu__link {
    font-size: 3.8rem;
    text-wrap: nowrap;
  }

  .menu__info {
    margin: 43px 83px 0;
  }

  .menu__socials i {
    font-size: 1.5rem;
  }

}

@media (min-width: 1400px) {
  .menu__info {
    margin: 43px 25% 0 83px;
  }
}

/* Fim navbar */