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

img {
  max-width: 100%;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
}
.brand-logo {color: #fff;text-decoration: none;font-size: 35px;border: 1px solid #fff;padding: 10px 20px;margin-top: 100px;}

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

.home-main__split {
  width: 50%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 9;
}
.home-main__split:after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -9;
  background: #02162ded;
}
.home-main__split--left {
  background: url("01.jpg") var(--split-left) no-repeat
    center / cover;
  justify-content: center;
  text-align: center;
}

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

.home-main__split--right {
  background-color: var(--split-right);
  align-items: center;
  justify-content: center;
  background: url("02.jpg") var(--split-left) no-repeat
  center / cover;
justify-content: center;
text-align: center;
}


.home-main__middle {
  position: absolute;
  width: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.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: center;
    padding: 10px 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;
    width: 100%;
  }

  .home-main__title {
    font-size: 4em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0;
  }

  .text-container {
    width: 100%;
    text-align: center;
    font-weight: 400;
    padding: 0;
    line-height: 35px;
  }
}

.home-main__description a {
  color: #fff;
  text-decoration: none;
}

@media (max-width:1024px){
  .home-main {
    display: block;
}
.home-main__split {
  width: 100%;
  min-height: 50vh;
}
.header {
  justify-content: center;
}
.brand-logo {
  font-size: 25px;
  padding: 5px 10px;
  margin-top: 30px;
  text-align: center;
}
p.home-main__description {
  font-weight: normal;
  line-height: 35px;
}
h1.home-main__title{
  margin-bottom: 0;
}
.home-main__split.home-main__split--left {
  padding-top: 100px;
}
p.home-main__description {
  font-size: 14px;
}
}