@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --split-left: #fae9b8;
  --split-right: #042242;
  --primary-color: #fff;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Poppins, sans-serif;
  font-weight: bold;
  font-size: 1em;
  color: var(--primary-color);
  /* background: url("/assets/images/wallpaperbetter.com_3840x2160City.jpg") var(--split-left) no-repeat center / cover; */
}

img {
  max-width: 100%;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
}
.brand-logo {
  padding-left: 0.75rem;
  width: 150px;
}

.icon-menu {
  position: fixed;
  right: 30px;
  cursor: pointer;
  z-index: 100;
}

.icon-menu__bar {
  width: 35px;
  background-color: #fff;
  margin: 5px;
  height: 3px;
}

.close-menu .icon-menu__bar--one {
  background-color: #000;
  transform: rotate(-45deg) translate(-5px, 6px);
}

.close-menu .icon-menu__bar--two {
  opacity: 0;
}

.close-menu .icon-menu__bar--three {
  background-color: #000;
  transform: rotate(45deg) translate(-5px, -6px);
}

.main-nav {
  background-color: rgba(266, 266, 266, 0.8);
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  min-height: 92vh;
  display: none;
  justify-content: center;
  align-items: center;
  top: 10;
  /* opacity: 0.7; */
}
.show-nav {
  display: flex;
}

.main-menu {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

.main-menu__item {
  list-style: none;
  padding: 0.75rem;
}

.main-menu__link {
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
}

.main-menu.active {
  display: flex;
}

/** Home main Section*/

.home-main {
  display: flex;
  background: url("/assets/images/wallpaperbetter.com_3840x2160City.jpg") var(--split-left) no-repeat center / cover;
}

.home-main__split {
  width: 50%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.home-main__split--left {
  /* background: url("/assets/images/wallpaperbetter.com_7680x4320.jpg") var(--split-left) no-repeat center / cover; */
  justify-content: center;
  opacity: .4;
  //justify-content: unset;
  /* background-color: #000; */
  /* background-color: var(--split-right); */
  background-color: var(--split-right);

}
.home-main__split--right {
  background-color: var(--split-right);
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  color: white;
  /* background: url("/assets/images/wallpaperbetter.com_3840x2160City.jpg") var(--split-left) no-repeat center / cover; */

}
.home-main__small-text {
  color: #000;
  text-transform: uppercase;
  font-size: 0.85em;
  position: absolute;
  bottom: 30%;
  left: 8%;
  transform: rotate(-90deg);
}
.home-main__small-text::before {
  content: "";
  position: absolute;
  border: 1px solid #000;
  width: 40px;
  top: 9px;
  left: -50%;
}
li{
  list-style: none;
  color: blue;
  font-style: bold;
}


@media (max-width: 3280px) {
  html { font-size: 18px; }
}
@media (max-width: 800px) {
  html { font-size: 11px; }
}

.home-main__title,
.home-main__description {
  display: block;
  color: #fff;
  /* font-size: xx-small; */
}

.home-main__middle {
  position: absolute;
  width: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: khaki;
}

.home-main__img {
  filter: drop-shadow(15px 10px 50px #000);
  /* h-shadow v-shadow blur(desenfoque) color */
}

/** Media Querys */

@media screen and (min-width: 64em) {
  .header {
    justify-content: space-between;
    padding: 20px 100px;
  }
  .icon-menu {
    display: none;
  }
  .main-nav {
    display: flex;
    min-height: 0;
    position: unset;
    width: unset;
    background-color: unset;
  }

  .main-menu {
    display: flex;
  }

  .main-menu__link {
    color: var(--primary-color);
    font-size: 0.85em;
  }

  .main-menu__link--active,
  .main-menu__link:hover {
    color: var(--split-left);
  }

  .home-main__middle {
    width: 130px;
  }

  .home-main__title,
  .home-main__description {
    display: block;
  }

  .home-main__title {
    font-size: 4em;
    /* font-family: Poppins, Arial, Helvetica, sans-serif; */
    /* text-transform: uppercase; */
  }

  .text-container {
    width: 25em;
    text-align: justify;
    font-weight: 400;
    margin-top: -5px;
    padding: 0;
  }
}